mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-19 10:08:04 +08:00
转移.net core 3.1,为.NET 5做准备
This commit is contained in:
@@ -1,9 +1,25 @@
|
||||
namespace Infrastructure
|
||||
{
|
||||
|
||||
public class Filter
|
||||
{
|
||||
public string Key { get; set; }
|
||||
public string Value { get; set; }
|
||||
public string Contrast { get; set; }
|
||||
|
||||
public string Text { get; set; }
|
||||
}
|
||||
|
||||
public class FilterGroup
|
||||
{
|
||||
/// <summary>
|
||||
/// or /and
|
||||
/// </summary>
|
||||
public string Operation { get; set; }
|
||||
public Filter[] Filters { get; set; }
|
||||
public FilterGroup[] Children { get; set; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user