using PushoverClient;
namespace ConsoleApplication1
{
class Program
public static void Main(string[] args)
Pushover pclient = new Pushover("a1udqoh4wctfn57us8dje5vxu799zr");
PushResponse response = pclient.Push(
"Test title",
"This is the test message.",
"ux92g87rg3hb55kmfa35pnhwdysgkj"
);
}