|
namespace NetinaShop.Domain.Entities.Users;
|
|
|
|
public class ApplicationRole : IdentityRole<Guid>
|
|
{
|
|
public string Description { get; set; } = string.Empty;
|
|
public string EnglishName { get; set; } = string.Empty;
|
|
public string PersianName { get; set; } = string.Empty;
|
|
} |