mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-17 02:07:50 -05:00
14 lines
276 B
C#
14 lines
276 B
C#
namespace Cleanuparr.Domain.Enums;
|
|
|
|
public enum PatternMode
|
|
{
|
|
/// <summary>
|
|
/// Delete all except those that match the patterns
|
|
/// </summary>
|
|
Exclude,
|
|
|
|
/// <summary>
|
|
/// Delete only those that match the patterns
|
|
/// </summary>
|
|
Include
|
|
} |