oqtane.framework/Oqtane.Client/Modules/Weather/Services/IWeatherForecastService.cs
2019-05-04 20:32:08 -04:00

11 lines
225 B
C#

using System;
using System.Threading.Tasks;
namespace Oqtane.Client.Modules.Weather.Services
{
public interface IWeatherForecastService
{
Task<WeatherForecast[]> GetForecastAsync(DateTime startDate);
}
}