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