1
0
Files
CoreProfilerExample/CoreProfilerExample.Service/Models/Dtos/GetWeatherForecastDto.cs
2024-03-25 16:13:35 +08:00

14 lines
316 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CoreProfilerExample.Service.Models.Dtos
{
public class GetWeatherForecastDto
{
public IEnumerable<GetWeatherForecastItemDto> WeatherForecasts { get; set; } = [];
}
}