namespace CMSMicroservice.Domain.Entities; //آدرس کاربر public class FactorDetails : BaseAuditableEntity { public long ProductId { get; set; } //Product Navigation Property public virtual Products Product { get; set; } public int Count { get; set; } public long UnitPrice { get; set; } public int UnitDiscount { get; set; } public long OrderId { get; set; } //Order Navigation Property public virtual UserOrder Order { get; set; } public long UnitDiscountPrice { get; set; } public bool IsChangePrice { get; set; } }