13 lines
321 B
C#
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; }
|
|
|
|
} |