19 lines
565 B
C#
19 lines
565 B
C#
|
|
using CMSMicroservice.Application.Common.Interfaces;
|
||
|
|
using CMSMicroservice.Application.Common.Models;
|
||
|
|
using CMSMicroservice.Domain.Enums;
|
||
|
|
using MediatR;
|
||
|
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
|
||
|
|
namespace CMSMicroservice.Application.PackageCQ.Commands.PurchaseGoldenPackage;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// دستور خرید پکیج طلایی از طریق درگاه بانکی
|
||
|
|
/// </summary>
|
||
|
|
public class PurchaseGoldenPackageCommand : IRequest<PaymentInitiateResult>
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// شناسه کاربر
|
||
|
|
/// </summary>
|
||
|
|
public long UserId { get; set; }
|
||
|
|
}
|