OpenAuth.Net/Infrastructure/Filter.cs

25 lines
539 B
C#
Raw Normal View History

namespace Infrastructure
2015-10-26 21:58:12 +08:00
{
2015-10-26 21:58:12 +08:00
public class Filter
{
public string Key { get; set; }
public string Value { get; set; }
public string Contrast { get; set; }
public string Text { get; set; }
2015-10-26 21:58:12 +08:00
}
public class FilterGroup
{
/// <summary>
/// or /and
/// </summary>
public string Operation { get; set; }
public Filter[] Filters { get; set; }
public FilterGroup[] Children { get; set; }
}
2015-10-26 21:58:12 +08:00
}