Files
CMS/src/CMSMicroservice.Application/ProductImagesCQ/Queries/GetProductImages/GetProductImagesResponseDto.cs
2025-11-12 02:24:02 +03:30

13 lines
321 B
C#

namespace CMSMicroservice.Application.ProductImagesCQ.Queries.GetProductImages;
public class GetProductImagesResponseDto
{
//
public long Id { get; set; }
//
public string Title { get; set; }
//
public string ImagePath { get; set; }
//
public string ImageThumbnailPath { get; set; }
}