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