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

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