namespace CMSMicroservice.Domain.Entities; //گالری تصاویر محصول public class ProductGallery : BaseAuditableEntity { public long ProductImageId { get; set; } //ProductImage Navigation Property public virtual ProductImage ProductImage { get; set; } public long ProductId { get; set; } //Product Navigation Property public virtual Product Product { get; set; } }