15 lines
341 B
C#
15 lines
341 B
C#
using MapTo;
|
|
|
|
namespace BlueWest.Data.Application.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; }
|
|
}
|
|
}
|
|
|