Files
parr_api/PARR.API/Services/Interfaces/IClientService.cs
Mikhail Kuznetsov 57fe9eff09 API
2023-06-16 15:00:11 +10:00

10 lines
147 B
C#

using System.Net;
namespace PARR.API.Services.Interfaces
{
public interface IClientService
{
IPAddress? GetClientIp();
}
}