1
0
Files
2024-03-25 16:13:35 +08:00

11 lines
322 B
C#

using CoreProfilerExample.Service.Models.Dtos;
using CoreProfilerExample.Service.Models.ParameterDtos;
namespace CoreProfilerExample.Service.Interfaces
{
public interface IWeatherService
{
public Task<GetWeatherForecastDto> GetWeatherForecastAsync(GetWeatherForecastParameterDto parameterDto);
}
}