11 lines
233 B
C#
11 lines
233 B
C#
using System.Net;
|
|
|
|
namespace OI.Metrology.Shared.Models.Stateless;
|
|
|
|
public interface IClientSettingsRepository
|
|
{
|
|
|
|
List<string> GetClientSettings(IPAddress? remoteIpAddress);
|
|
string GetIpAddress(IPAddress? remoteIpAddress);
|
|
|
|
} |