expose-myit/Shared/Models/Stateless/Methods/IWeatherForecastController.cs
2022-12-10 12:06:16 -07:00

9 lines
231 B
C#

namespace Expose.MyIT.Shared.Models.Stateless.Methods;
public interface IWeatherForecastController
{
static string GetRouteName() => nameof(IWeatherForecastController)[1..^10];
Task<ViewModels.WeatherForecast[]> Get();
}