mirror of
https://dev.azure.com/tstanciu94/Packages/_git/Netmash
synced 2025-06-21 19:22:38 +03:00
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();
|
|
}
|
|
} |