Files
CMS/src/CMSMicroservice.Application/ProductGallerysCQ/Commands/CreateNewProductGallerys/CreateNewProductGallerysCommand.cs
2025-11-12 02:24:02 +03:30

9 lines
292 B
C#

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