1
0
Files
CoreProfilerExample/CoreProfilerExample.Service/Models/Dtos/GetWeatherForecastDto.cs
2024-03-25 17:39:44 +08:00

8 lines
199 B
C#

namespace CoreProfilerExample.Service.Models.Dtos
{
public class GetWeatherForecastDto
{
public IEnumerable<GetWeatherForecastItemDto> WeatherForecasts { get; set; } = [];
}
}