DD.WellWorkover.Cloud/AsbCloudApp/Data/UserTokenDto.cs
2021-11-29 12:39:28 +05:00

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; }
}
}