forked from ddrilling/AsbCloudServer
11 lines
239 B
C#
11 lines
239 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class UserTokenDto : UserExtendedDto
|
|
{
|
|
public IEnumerable<PermissionDto> Permissions { get; set; }
|
|
public string Token { get; set; }
|
|
}
|
|
}
|