12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- namespace Admin.Core.Service.Admin.Role.Output
- {
- public class RoleListOutput
- {
-
-
-
- public long Id { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string Code { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
- public bool Enabled { get; set; }
-
-
-
- public DateTime? CreatedTime { get; set; }
- }
- }
|