Files
gamification-service/Models/Database/RoleRight.cs

11 lines
256 B
C#
Executable File

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!;
}