16 lines
318 B
C#
16 lines
318 B
C#
namespace Marco.Pms.Model.Entitlements
|
|
{
|
|
public class ApplicationRole
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string? Role { get; set; }
|
|
public string? Description { get; set; }
|
|
public bool IsSystem { get; set; } = false;
|
|
|
|
public Guid TenantId { get; set; }
|
|
|
|
}
|
|
|
|
|
|
}
|