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

10 lines
222 B
C#
Raw Normal View History

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();
}
}