forked from ddrilling/AsbCloudServer
551c60c4ff
Rename some fields in DB.permission.
11 lines
243 B
C#
11 lines
243 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class UserTokenDto : UserExtendedDto
|
|
{
|
|
public IEnumerable<PermissionBaseDto> Permissions { get; set; }
|
|
public string Token { get; set; }
|
|
}
|
|
}
|