using System; namespace XGL.Models { public class common_auth_roleModel { /// ///Id /// public int Id { get;set; } /// ///Name /// public string Name { get;set; } /// ///Description /// public string Description { get;set; } /// ///OrderSort /// public int OrderSort { get;set; } /// ///Enabled /// public bool Enabled { get;set; } /// ///IsDeleted /// public bool IsDeleted { get;set; } /// ///CreateTime /// public string CreateTime { get;set; } /// ///CreateId /// public int CreateId { get;set; } /// ///CreateBy /// public string CreateBy { get;set; } /// ///ModifyTime /// public string ModifyTime { get;set; } /// ///ModifyId /// public int ModifyId { get;set; } /// ///ModifyBy /// public string ModifyBy { get;set; } } }