mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-23 05:52:45 +01:00
19 lines
434 B
C#
19 lines
434 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Sieve.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
|
|
public class SieveAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// Override name used
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
public bool CanSort { get; set; }
|
|
public bool CanFilter { get; set; }
|
|
}
|
|
}
|