Files
CMS/src/CMSMicroservice.Application/ProductImagesCQ/Queries/GetProductImages/GetProductImagesResponseDto.cs

13 lines
321 B
C#
Raw Normal View History

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