10 lines
208 B
C#
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>
|
|
{
|
|
}
|
|
}
|