using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Yi.Framework.Ddd.Dtos; namespace Yi.Framework.DictionaryManager.Dtos.Dictionary { public class DictionaryGetListInputVo : PagedAndSortedResultRequestDto { public string? DictType { get; set; } public string? DictLabel { get; set; } public bool? State { get; set; } } }