netmash/NDB.Infrastructure.PublicIP/Services/IPublicIPService.cs

10 lines
214 B
C#
Raw Normal View History

2019-10-28 23:53:39 +02:00
using NDB.Infrastructure.PublicIP.Entities;
using System.Threading.Tasks;
namespace NDB.Infrastructure.PublicIP.Services
{
public interface IPublicIPService
{
Task<IPInfo> GetPublicIP();
}
}