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 RoleType { get; set; } public virtual ICollection Users { get; set; } public IEnumerable PermissionIds { get; set; } public IEnumerable Permissions { get; set; } } }