EasyCache.Sample/Dtos/ProductResponseDto.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection.Metadata.Ecma335;
using System.Threading.Tasks;
namespace EasyCache.Sample.Dtos
{
public class ProductResponseDto
{
public string Name { get; set; }
public string Description { get; set; }
}
}