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

11 lines
297 B
C#

namespace CMSMicroservice.Application.ProductGallerysCQ.Commands.UpdateProductGallerys;
public record UpdateProductGallerysCommand : IRequest<Unit>
{
//
public long Id { get; init; }
//
public long ProductImageId { get; init; }
//
public long ProductId { get; init; }
}