roadie/RoadieLibrary/Identity/ApplicationUserClaim.cs
Steven Hildreth 0344d1e604 WIP
2018-11-10 17:26:04 -06:00

11 lines
No EOL
289 B
C#

using Microsoft.AspNetCore.Identity;
using System.ComponentModel.DataAnnotations.Schema;
namespace Roadie.Library.Identity
{
[Table("userClaims")]
public class ApplicationUserClaim : IdentityUserClaim<int>
{
public virtual ApplicationUser User { get; set; }
}
}