TourIAm/TIAMWebApp/Shared/Interfaces/IWeatherForecastService.cs

10 lines
220 B
C#

using TIAMWebApp.Shared.Application.Models;
namespace TIAMWebApp.Shared.Application.Interfaces
{
public interface IWeatherForecastService
{
Task<WeatherForecast[]?> GetWeatherForecastAsync();
}
}