2024-07-04 11:02:45 +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
|
|
|
|
2024-08-19 10:01:07 +05:00
|
|
|
namespace AsbCloudApp.Data.User;
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
public class UserExtendedDto : UserDto
|
2021-12-11 16:46:04 +05:00
|
|
|
{
|
2024-08-19 10:01:07 +05:00
|
|
|
/// <summary>
|
|
|
|
/// Роли пользователя
|
|
|
|
/// </summary>
|
|
|
|
public IEnumerable<string> RoleNames { get; set; } = Enumerable.Empty<string>();
|
2021-12-11 16:46:04 +05:00
|
|
|
}
|