15 lines
339 B
C#
15 lines
339 B
C#
|
using MapTo;
|
||
|
|
||
|
namespace BlueWest.WebApi.Context.Users
|
||
|
{
|
||
|
[MapFrom(typeof(ApplicationRoleClaim))]
|
||
|
public partial class ApplicationRoleClaimUnique
|
||
|
{
|
||
|
public int Id { get; set; }
|
||
|
public string RoleId { get; set; }
|
||
|
public string ClaimType { get; set; }
|
||
|
public string ClaimValue { get; set; }
|
||
|
}
|
||
|
}
|
||
|
|