Generator Changes at 11/17/2025 11:53:47 PM +03:30
This commit is contained in:
@@ -2,23 +2,24 @@ namespace CMSMicroservice.Domain.Entities;
|
||||
//دسته بندی
|
||||
public class Category : BaseAuditableEntity
|
||||
{
|
||||
//نام لاتین
|
||||
//نام لاتین
|
||||
public string Name { get; set; }
|
||||
//عنوان
|
||||
//عنوان
|
||||
public string Title { get; set; }
|
||||
//توضیحات
|
||||
//توضیحات
|
||||
public string? Description { get; set; }
|
||||
//آدرس تصویر
|
||||
//آدرس تصویر
|
||||
public string? ImagePath { get; set; }
|
||||
//شناسه والد
|
||||
//شناسه والد
|
||||
public long? ParentId { get; set; }
|
||||
//Category Navigation Property
|
||||
//Category Navigation Property
|
||||
public virtual Category? Parent { get; set; }
|
||||
//Category Collection Navigation Reference
|
||||
public virtual ICollection<Category> Categories { get; set; }
|
||||
//فعال؟
|
||||
//فعال؟
|
||||
public bool IsActive { get; set; }
|
||||
//ترتیب نمایش
|
||||
//ترتیب نمایش
|
||||
public int SortOrder { get; set; }
|
||||
//Category Collection Navigation Reference
|
||||
public virtual ICollection<Category> Categorys { get; set; }
|
||||
//PruductCategory Collection Navigation Reference
|
||||
public virtual ICollection<PruductCategory> PruductCategorys { get; set; }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user