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