FIC_Solar/SolarPower/Controllers/StationReportController.cs
2021-07-22 14:29:57 +08:00

17 lines
351 B
C#

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