2023-09-15 12:37:02 +03:30
|
|
|
|
namespace Brizco.Domain.Entities.User;
|
|
|
|
|
|
|
|
|
|
|
|
public class ApplicationRole : IdentityRole<Guid>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
2023-09-20 11:54:12 +03:30
|
|
|
|
public string EnglishName { get; set; } = string.Empty;
|
|
|
|
|
|
public string PersianName { get; set; } = string.Empty;
|
2023-09-18 15:41:41 +03:30
|
|
|
|
|
|
|
|
|
|
public Guid? ComplexId { get; set; }
|
|
|
|
|
|
public Complex.Complex? Complex { get; set; }
|
2023-09-15 12:37:02 +03:30
|
|
|
|
}
|