Files
2026-04-02 17:14:55 +02:00

11 lines
168 B
C#

namespace MP_IO.Interfaces
{
public interface IHomeService
{
/// <summary>
/// GET: Home
/// </summary>
string Index();
}
}