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