12345678910111213141516171819202122232425262728 |
- namespace Admin.Core.Service.Admin.Role.Input
- {
-
-
-
- public class RoleAddInput
- {
-
-
-
- public string Name { get; set; }
-
-
-
- public string Code { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
- public bool Enabled { get; set; }
- }
- }
|