expose-myit/Shared/Models/Stateless/Methods/IClientSettingsController.cs
2022-12-10 12:06:16 -07:00

10 lines
244 B
C#

namespace Expose.MyIT.Shared.Models.Stateless.Methods;
public interface IClientSettingsController
{
static string GetRouteName() => nameof(IClientSettingsController)[1..^10];
string[] GetClientSettings();
string GetIpAddress();
}