10 lines
296 B
C#
10 lines
296 B
C#
namespace Marco.Pms.Model.Filters
|
|
{
|
|
public class AdvanceItem
|
|
{
|
|
public string Column { get; set; } = string.Empty;
|
|
public string Opration { get; set; } = string.Empty; // "greater than", "equal to", etc.
|
|
public string Value { get; set; } = string.Empty;
|
|
}
|
|
}
|