18 lines
392 B
C#
18 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class AspNetRole
|
|
{
|
|
public AspNetRole()
|
|
{
|
|
this.AspNetUsers = new List<AspNetUser>();
|
|
}
|
|
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public virtual ICollection<AspNetUser> AspNetUsers { get; set; }
|
|
}
|
|
}
|