17 lines
585 B
C#
17 lines
585 B
C#
namespace CMSMicroservice.Application.UserOrderCQ.Commands.CreateNewUserOrder;
|
|
public record CreateNewUserOrderCommand : IRequest<CreateNewUserOrderResponseDto>
|
|
{
|
|
//قیمت
|
|
public long Price { get; init; }
|
|
//شناسه پکیج
|
|
public long PackageId { get; init; }
|
|
//شناسه تراکنش
|
|
public long? TransactionId { get; init; }
|
|
//وضعیت پرداخت
|
|
public bool PaymentStatus { get; init; }
|
|
//تاریخ پرداخت
|
|
public DateTime? PaymentDate { get; init; }
|
|
//شناسه کاربر
|
|
public long UserId { get; init; }
|
|
|
|
} |