DD.WellWorkover.Cloud/AsbCloudApp/Data/UserRoleDto.cs
2021-11-29 17:34:53 +05:00

16 lines
471 B
C#

using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class UserRoleDto : IId
{
public int Id { get; set; }
public string Caption { get; set; }
public int? IdParent { get; set; }
public int IdType { get; set; }
public virtual ICollection<UserDto> Users { get; set; }
public IEnumerable<int> PermissionIds { get; set; }
public IEnumerable<PermissionDto> Permissions { get; set; }
}
}