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