namespace Atomx.Admin.Client.Models { public class CurrencySearchModel:BaseSearch { /// /// 用户名 /// public string Name { get; set; } = string.Empty; /// /// 状态 /// public string Status { get; set; } = string.Empty; /// /// 开始时间 /// public DateTime?[] RangeTime { get; set; } = new DateTime?[] { null, null }; } }