11 lines
297 B
C#
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; }
|
|
|
|
} |