namespace CMSMicroservice.Domain.Entities; //توکن Otp public class ProductGallerys : BaseAuditableEntity { public long ProductImageId { get; set; } //ProductImage Navigation Property public virtual ProductImages ProductImage { get; set; } public long ProductId { get; set; } //Product Navigation Property public virtual Products Product { get; set; } }