FIC_Solar/SolarPower/Controllers/StationOverviewController.cs
2021-07-01 09:41:36 +08:00

17 lines
355 B
C#

using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SolarPower.Controllers
{
public class StationOverviewController : MyBaseController<StationOverviewController>
{
public IActionResult Index()
{
return View();
}
}
}