FIC_Solar/SolarPower/Controllers/UIController.cs
2021-06-09 15:03:24 +08:00

17 lines
309 B
C#

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