Generator Changes at 11/12/2025 1:32:03 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-12 02:24:02 +03:30
parent 826ae4589f
commit b27c765731
290 changed files with 30811 additions and 21316 deletions

View File

@@ -0,0 +1,16 @@
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; }
}