FIC_Solar/SolarPower/Controllers/ExceptionRecordController.cs
2021-07-22 11:06:45 +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 ExceptionRecordController : MyBaseController<ExceptionRecordController>
{
public IActionResult Index()
{
return View();
}
}
}