LANCommander/LANCommander/Data/Models/Role.cs

10 lines
208 B
C#

using Microsoft.AspNetCore.Identity;
using System.ComponentModel.DataAnnotations.Schema;
namespace LANCommander.Data.Models
{
[Table("Roles")]
public class Role : IdentityRole<Guid>
{
}
}