11 lines
227 B
C#
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();
|
|
} |