forked from ddrilling/AsbCloudServer
16 lines
362 B
C#
16 lines
362 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
#nullable enable
|
|
/// <inheritdoc/>
|
|
public class UserExtendedDto : UserDto
|
|
{
|
|
/// <summary>
|
|
/// Роли пользователя
|
|
/// </summary>
|
|
public IEnumerable<string> RoleNames { get; set; } = Enumerable.Empty<string>();
|
|
}
|
|
}
|