Api/Berizco.Api/Controllers/WeatherForecastController.cs

18 lines
333 B
C#

using Microsoft.AspNetCore.Mvc;
namespace Berizco.Api.Controllers
{
[ApiController]
[Route("[controller]")]
public class WeatherForecastController : ControllerBase
{
public WeatherForecastController()
{
}
public IEnumerable<WeatherForecast> Get()
{
}
}
}