namespace FrontOffice.BFF.Application.UserOrderCQ.Queries.GetUserOrder; public class GetUserOrderResponseDto { //شناسه public long Id { get; set; } //قیمت public long Amount { get; set; } //شناسه پکیج public long PackageId { get; set; } //شناسه تراکنش public long? TransactionId { 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? 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; } }