LANCommander/LANCommander.Server.Data/Models/UserRole.cs
2025-03-09 01:43:12 -06:00

13 lines
366 B
C#

using Microsoft.AspNetCore.Identity;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace LANCommander.Server.Data.Models
{
[Table("UserRoles")]
public class UserRole : IdentityUserRole<Guid>
{
public virtual Role Role { get; set; }
public virtual User User { get; set; }
}
}