forked from ddrilling/AsbCloudServer
13 lines
312 B
C#
13 lines
312 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, long> Roles { get; set; }
|
|
public string Token { get; set; }
|
|
}
|
|
}
|