2021-12-11 16:46:04 +05:00
|
|
|
|
using System.Collections.Generic;
|
2023-02-20 12:18:45 +05:00
|
|
|
|
using System.Linq;
|
2021-12-11 16:46:04 +05:00
|
|
|
|
|
2023-06-21 12:33:18 +05:00
|
|
|
|
namespace AsbCloudApp.Data.User
|
2021-12-11 16:46:04 +05:00
|
|
|
|
{
|
2022-06-02 12:35:51 +05:00
|
|
|
|
/// <inheritdoc/>
|
2021-12-11 16:46:04 +05:00
|
|
|
|
public class UserExtendedDto : UserDto
|
|
|
|
|
{
|
2022-06-02 12:35:51 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Роли пользователя
|
|
|
|
|
/// </summary>
|
2023-02-20 12:18:45 +05:00
|
|
|
|
public IEnumerable<string> RoleNames { get; set; } = Enumerable.Empty<string>();
|
2021-12-11 16:46:04 +05:00
|
|
|
|
}
|
|
|
|
|
}
|