Files
CMS/src/CMSMicroservice.Application/ProductGallerysCQ/Commands/UpdateProductGallerys/UpdateProductGallerysCommand.cs

11 lines
297 B
C#
Raw Normal View History

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; }
}