mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-08-02 05:50:38 +00:00
implement first demo app template
This commit is contained in:
16
ElectronNET.WebApp/Controllers/AboutController.cs
Normal file
16
ElectronNET.WebApp/Controllers/AboutController.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace ElectronNET.WebApp.Controllers
|
||||
{
|
||||
public class AboutController : Controller
|
||||
{
|
||||
public IActionResult Index()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user