2025-09-27 08:46:36 +03:30
|
|
|
namespace CMSMicroservice.Domain.Entities;
|
|
|
|
|
//نقش
|
|
|
|
|
public class Role : BaseAuditableEntity
|
|
|
|
|
{
|
2025-11-25 02:03:51 +03:30
|
|
|
//نام لاتین
|
2025-09-27 08:46:36 +03:30
|
|
|
public string Name { get; set; }
|
2025-11-25 02:03:51 +03:30
|
|
|
//عنوان
|
2025-09-27 08:46:36 +03:30
|
|
|
public string Title { get; set; }
|
|
|
|
|
//UserRole Collection Navigation Reference
|
|
|
|
|
public virtual ICollection<UserRole> UserRoles { get; set; }
|
2025-11-25 02:03:51 +03:30
|
|
|
}
|