apc-viewer/APC Viewer/Models/IHomeController.cs

11 lines
227 B
C#

using Microsoft.AspNetCore.Mvc;
namespace APCViewer.Controllers;
public interface IHomeController
{
ActionResult Encode(string value = "");
ActionResult Error();
ActionResult Index();
ActionResult Privacy();
}