mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-15 04:11:38 +00:00
11 lines
225 B
C#
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);
|
|
}
|
|
}
|