DD.WellWorkover.Cloud/AsbCloudApp/Data/UserRoleDto.cs

38 lines
1011 B
C#
Raw Normal View History

2021-09-10 11:28:57 +05:00
using System.Collections.Generic;
2023-02-20 12:18:45 +05:00
using System.ComponentModel.DataAnnotations;
using System.Linq;
2021-09-10 11:28:57 +05:00
namespace AsbCloudApp.Data
{
2023-02-20 12:18:45 +05:00
#nullable enable
2022-06-02 12:35:51 +05:00
/// <summary>
/// Роль пользователя платформы
/// </summary>
2021-09-10 11:28:57 +05:00
public class UserRoleDto : IId
{
2022-06-02 12:35:51 +05:00
/// <inheritdoc/>
2021-09-10 11:28:57 +05:00
public int Id { get; set; }
2022-06-02 12:35:51 +05:00
/// <summary>
/// название
/// </summary>
2023-02-20 12:18:45 +05:00
[Required]
public string Caption { get; set; } = null!;
2022-06-02 12:35:51 +05:00
/// <summary>
/// id типа роли
/// </summary>
public int IdType { get; set; }
2022-06-02 12:35:51 +05:00
/// <summary>
/// список разрешений
/// </summary>
2023-02-20 12:18:45 +05:00
public IEnumerable<PermissionDto> Permissions { get; set; } = Enumerable.Empty<PermissionDto>();
2022-06-02 12:35:51 +05:00
/// <summary>
/// Включенные роли
/// </summary>
2023-02-20 12:18:45 +05:00
public virtual IEnumerable<UserRoleDto> Roles { get; set; } = Enumerable.Empty<UserRoleDto>();
2021-09-10 11:28:57 +05:00
}
}