- using System.Collections.Generic;
- namespace IwbZero.Authorization.Permissions
- {
- public class DataPermissionAuthDto
- {
- public string PermissionName { get; set; }
- public string Key { get; set; }
- public List<int> OperTypes { get; set; }
- public List<string> UserIds { get; set; }
- public List<string> RoleIds { get; set; }
- }
- }
|