9 lines
292 B
C#
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; }
|
|
|
|
} |