Generator Changes at 11/25/2025 5:01:02 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-25 05:03:23 +03:30
parent 945b2a0e00
commit ac97ef5dce
4 changed files with 96 additions and 70 deletions

View File

@@ -4,18 +4,38 @@ public class GetUserOrderResponseDto
//شناسه
public long Id { get; set; }
//قیمت
public long Price { get; set; }
public long Amount { get; set; }
//شناسه پکیج
public long PackageId { get; set; }
//شناسه تراکنش
public long? TransactionId { get; set; }
//وضعیت پرداخت
public bool PaymentStatus { get; set; }
public PaymentStatus PaymentStatus { get; set; }
//تاریخ پرداخت
public DateTime? PaymentDate { get; set; }
//شناسه کاربر
public long UserId { get; set; }
//شناسه آدرس کاربر
public long UserAddressId { get; set; }
//
public PaymentMethod? PaymentMethod { get; set; }
//
public string? UserAddressText { get; set; }
//
public List<GetUserOrderResponseFactorDetail>? FactorDetails { get; set; }
}
}public class GetUserOrderResponseFactorDetail
{
//شناسه
public long ProductId { get; set; }
//
public string ProductTitle { get; set; }
//
public string? ProductThumbnailPath { get; set; }
//
public long? UnitPrice { get; set; }
//
public int? Count { get; set; }
//
public long? UnitDiscountPrice { get; set; }
}