netmash/infrastructure/Netmash.Infrastructure.Publ.../Services/IPublicIPService.cs

10 lines
222 B
C#

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