mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-07 05:37:20 +00:00
* Cleanup of unnecessary usings * Used language keywords instead of BCL types : Object --> object * Fixed some spelling issues
12 lines
222 B
C#
12 lines
222 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace ElectronNET.WebApp.Controllers
|
|
{
|
|
public class AboutController : Controller
|
|
{
|
|
public IActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
} |