DD.WellWorkover.Cloud/AsbCloudApp/Data/UserTokenDto.cs

14 lines
376 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace AsbCloudApp.Data
{
2021-04-23 10:21:25 +05:00
public class UserTokenDto : UserBaseDto
{
public int Id { get; set; }
2021-07-21 15:22:58 +05:00
public string CompanyName { get; set; }
public IDictionary<string, int> Permissions { get; set; }
public IEnumerable<string> RoleNames { get; set; }
public string Token { get; set; }
}
}