using System; using System.Collections.Generic; using System.Text; namespace Sieve.Attributes { [AttributeUsage(AttributeTargets.Property, AllowMultiple = false)] public class SieveAttribute : Attribute { /// /// Override name used /// public string Name { get; set; } public bool CanSort { get; set; } public bool CanFilter { get; set; } } }