9 lines
231 B
C#
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();
|
|
|
|
} |