2024-10-15 23:48:16 -05:00
|
|
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.Server.Data.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
[Table("UserRoles")]
|
2025-03-09 01:43:12 -06:00
|
|
|
|
public class UserRole : IdentityUserRole<Guid>
|
|
|
|
|
|
{
|
|
|
|
|
|
public virtual Role Role { get; set; }
|
|
|
|
|
|
public virtual User User { get; set; }
|
|
|
|
|
|
}
|
2024-10-15 23:48:16 -05:00
|
|
|
|
}
|