2021-09-10 11:28:57 +05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data
|
|
|
|
|
{
|
|
|
|
|
public class UserRoleDto : IId
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Caption { get; set; }
|
2021-11-26 17:05:41 +05:00
|
|
|
|
public int IdParent { get; set; }
|
2021-11-29 12:39:28 +05:00
|
|
|
|
public int RoleType { get; set; }
|
|
|
|
|
public virtual ICollection<UserDto> Users { get; set; }
|
|
|
|
|
public IEnumerable<int> PermissionIds { get; set; }
|
|
|
|
|
public IEnumerable<PermissionDto> Permissions { get; set; }
|
2021-09-10 11:28:57 +05:00
|
|
|
|
}
|
|
|
|
|
}
|