Mobile-API for AdGuard VPN an application that hides your IP and location from prying eyes, encrypts traffic and makes you anonymous
using AdGuardVpnApi;
namespace Application
{
internal class Program
{
static async Task Main()
{
var api = new AdGuardVpn();
string locations = await api.GetLocations();
Console.WriteLine(locations);
}
}
}