using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareCC_WC2CC.Authorize.Dto { /// /// 授权信息类 /// public class AuthorizeClass { /// /// 当前天 /// public string CurDay { get; set; } /// /// 是否已经验证过了 /// public bool IsHasAuthorize { get; set; } } }