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