oqtane.framework/Oqtane.Client/Modules/Weather/Services/IWeatherForecastService.cs
2020-04-03 17:18:33 -04:00

12 lines
255 B
C#

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