LANCommander/LANCommander.Server.Data/Models/UserRole.cs

14 lines
366 B
C#
Raw Permalink Normal View History

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")]
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
}