2019-10-28 23:53:39 +02:00

10 lines
214 B
C#

using NDB.Infrastructure.PublicIP.Entities;
using System.Threading.Tasks;
namespace NDB.Infrastructure.PublicIP.Services
{
public interface IPublicIPService
{
Task<IPInfo> GetPublicIP();
}
}