FilterEntity.cs 342 B

123456789101112
  1. namespace DataControlMod.Entity
  2. {
  3. public class filterEntity
  4. {
  5. public string left { get; set; }
  6. public string right { get; set; }
  7. public string column { get; set; }
  8. public string comparator { get; set; }
  9. public string value { get; set; }
  10. public string connector { get; set; }
  11. }
  12. }