12 lines
324 B
C#
12 lines
324 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; }
|
|
}
|