15 lines
372 B
C#
15 lines
372 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class AspNetUserClaim
|
|
{
|
|
public int Id { get; set; }
|
|
public string ClaimType { get; set; }
|
|
public string ClaimValue { get; set; }
|
|
public string User_Id { get; set; }
|
|
public virtual AspNetUser AspNetUser { get; set; }
|
|
}
|
|
}
|