initial commit from an older template
This commit is contained in:
10
Models/Database/RoleRight.cs
Executable file
10
Models/Database/RoleRight.cs
Executable file
@@ -0,0 +1,10 @@
|
||||
namespace GamificationService.Models.Database;
|
||||
|
||||
public class RoleRight
|
||||
{
|
||||
public long RoleId { get; set; }
|
||||
public ApplicationRole Role { get; set; } = null!;
|
||||
|
||||
public long RightId { get; set; }
|
||||
public Right Right { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user