forked from ddrilling/AsbCloudServer
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 IEnumerable<string> RoleNames { get; set; }
|
|
public IDictionary<string, int> Permissions { get; set; }
|
|
public string Token { get; set; }
|
|
}
|
|
}
|