22 lines
619 B
C#
22 lines
619 B
C#
namespace BackOffice.BFF.Application.PackageCQ.Commands.CreateNewPackage;
|
|
public record CreateNewPackageCommand : IRequest<CreateNewPackageResponseDto>
|
|
{
|
|
//عنوان
|
|
public string Title { get; init; }
|
|
//توضیحات
|
|
public string Description { get; init; }
|
|
//فایل تصویر
|
|
public BoostCardFileModel ImageFile { get; init; }
|
|
//قیمت
|
|
public long Price { get; init; }
|
|
|
|
}public class BoostCardFileModel
|
|
{
|
|
//فایل
|
|
public byte[] File { get; set; }
|
|
//نام
|
|
public string FileName { get; set; }
|
|
//نوع فایل
|
|
public string Mime { get; set; }
|
|
}
|