2022-09-12 17:57:37 +03:00
|
|
|
using MapTo;
|
|
|
|
|
2022-11-18 03:15:53 +03:00
|
|
|
namespace CodeLiturgy.Data.Application.Users
|
2022-09-12 17:57:37 +03:00
|
|
|
{
|
|
|
|
[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; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|