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