roadie/Roadie.Api.Library/Identity/ApplicationUserClaim.cs
2018-12-26 13:39:13 -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; }
}
}