Unofficial .NET Client for kwork.com
It is a simple library for working with kwork.com Documentation
using Kwork;
class Program
{
public static KworkClient client = new KworkClient(Login: "TestAccountLogin", Password: "TestAccountPassword");
static void Main(string[] args)
{
client.OnMessage += NewMsg;
client.StartReceiving();
Console.WriteLine("Press any key for exit...");
Console.ReadKey();
}
public static void NewMsg(Kwork.Types.Updates.KworkUpdateNewInbox msg)
{
client.SendMessage(user_id: msg.from, text: "Do you need a bot?\nYou can look at examples of already done");
}
}