Api/Berizco.Api/Controllers/WeatherForecastController.cs

18 lines
333 B
C#
Raw Normal View History

2023-09-08 12:25:21 +03:30
using Microsoft.AspNetCore.Mvc;
namespace Berizco.Api.Controllers
{
[ApiController]
[Route("[controller]")]
public class WeatherForecastController : ControllerBase
{
public WeatherForecastController()
{
}
public IEnumerable<WeatherForecast> Get()
{
}
}
}