25 lines
716 B
C#
25 lines
716 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace WebDoorCreator.Data.DbModels
|
|
{
|
|
[Table("AspNetUserRoles")]
|
|
public class AspNetUserRoles
|
|
{
|
|
public string UserId { get; set; } = "";
|
|
public string RoleId { get; set; } = "";
|
|
|
|
[ForeignKey("UserId")]
|
|
public virtual AspNetUsers? UsersNav { get; set; }
|
|
[ForeignKey("RoleId")]
|
|
public virtual AspNetRoles? RolesNav { get; set; }
|
|
}
|
|
}
|