9 lines
196 B
C#
9 lines
196 B
C#
namespace Expose.MyIT.Shared.Models.Stateless;
|
|
|
|
public interface IWeatherForecastController<T>
|
|
{
|
|
|
|
static string GetRouteName() => nameof(IWeatherForecastController<T>)[1..^10];
|
|
T Get();
|
|
|
|
} |