forked from ddrilling/AsbCloudServer
10 lines
183 B
C#
10 lines
183 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class UserExtendedDto : UserDto
|
|||
|
{
|
|||
|
public IEnumerable<string> RoleNames { get; set; }
|
|||
|
}
|
|||
|
}
|