namespace OI.Metrology.Shared.Models.Stateless; public interface IClientSettingsController { enum Action : int { Client = 0, IP = 1 } static string GetRouteName() => nameof(IClientSettingsController)[1..^10]; T GetClientSettings(); T GetIpAddress(); }