forked from ddrilling/AsbCloudServer
2d9388cb2a
This reverts commit ad34e6445c
.
14 lines
376 B
C#
14 lines
376 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class UserTokenDto : UserBaseDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string CompanyName { get; set; }
|
|
public IDictionary<string, int> Permissions { get; set; }
|
|
public IEnumerable<string> RoleNames { get; set; }
|
|
public string Token { get; set; }
|
|
}
|
|
}
|