using System;
using System.Collections.Generic;
using Microsoft.AspNetCore.Identity;
using MapTo;
namespace CodeLiturgy.Data.Application.Users
{
///
[MapFrom(typeof(ApplicationUserRoleUnique))]
public partial class ApplicationUserRole : IdentityUserRole
{
///
/// User entity of this role
///
public ApplicationUser User { get; set; }
public ApplicationRole ApplicationRole { get; set; }
///
public sealed override string UserId { get; set; }
///
public sealed override string RoleId { get; set; }
}
}