11 lines
325 B
C#
11 lines
325 B
C#
|
|
namespace CMSMicroservice.Domain.Entities;
|
||
|
|
//نقش
|
||
|
|
public class Role : BaseAuditableEntity
|
||
|
|
{
|
||
|
|
//نام لاتین
|
||
|
|
public string Name { get; set; }
|
||
|
|
//عنوان
|
||
|
|
public string Title { get; set; }
|
||
|
|
//UserRole Collection Navigation Reference
|
||
|
|
public virtual ICollection<UserRole> UserRoles { get; set; }
|
||
|
|
}
|