using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; namespace AsbCloudApp.Data { /// /// Роль пользователя платформы /// public class UserRoleDto : IId { /// public int Id { get; set; } /// /// название /// [Required] public string Caption { get; set; } = null!; /// /// id типа роли /// public int IdType { get; set; } /// /// список разрешений /// public IEnumerable Permissions { get; set; } = Enumerable.Empty(); /// /// Включенные роли /// public virtual IEnumerable Roles { get; set; } = Enumerable.Empty(); } }