using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common.Dtos { public class condination { public string PropName { get; set; } public string Operation { get; set; } public object? Value { get; set; } } }