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