mirror of
https://github.com/Biarity/Sieve.git
synced 2025-07-01 09:03:34 +02:00
12 lines
154 B
C#
12 lines
154 B
C#
using System;
|
|
|
|
namespace Sieve.Models
|
|
{
|
|
[Flags]
|
|
public enum Allow
|
|
{
|
|
Sort = 1,
|
|
Filter = 2,
|
|
SortAndFilter = 4
|
|
}
|
|
} |