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

14 lines
289 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CoreProfilerExample.Service.Models.ParameterDtos
{
public class GetWeatherForecastParameterDto
{
public int ForecastDays { get; set; }
}
}