Files
CMS/src/CMSMicroservice.Application/ProductGallerysCQ/Commands/CreateNewProductGallerys/CreateNewProductGallerysCommand.cs

9 lines
292 B
C#
Raw Normal View History

namespace CMSMicroservice.Application.ProductGallerysCQ.Commands.CreateNewProductGallerys;
public record CreateNewProductGallerysCommand : IRequest<CreateNewProductGallerysResponseDto>
{
//
public long ProductImageId { get; init; }
//
public long ProductId { get; init; }
}