mirror of
https://github.com/Biarity/Sieve.git
synced 2025-04-12 23:12:53 +02:00
10 lines
230 B
C#
10 lines
230 B
C#
namespace Sieve.Models
|
|
{
|
|
public class SievePropertyMetadata : ISievePropertyMetadata
|
|
{
|
|
public string Name { get; set; }
|
|
public bool CanFilter { get; set; }
|
|
public bool CanSort { get; set; }
|
|
}
|
|
}
|