19 lines
408 B
C#
19 lines
408 B
C#
using Microsoft.AspNetCore.Mvc.ModelBinding.Validation;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Marco.Pms.Model.Entitlements
|
|
{
|
|
public class ApplicationRole
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Role { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
public int TenantId { get; set; }
|
|
|
|
}
|
|
|
|
|
|
}
|