10 lines
214 B
C#
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();
|
|||
|
}
|
|||
|
}
|