namespace CMSMicroservice.Domain.Entities; //تصاویر محصول public class ProductImage : BaseAuditableEntity { public string Title { get; set; } public string ImagePath { get; set; } public string ImageThumbnailPath { get; set; } //ProductGalleries Collection Navigation Reference public virtual ICollection ProductGalleries { get; set; } }