Skip to content

dmitriy337/KworkClient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KworkClient

Unofficial .NET Client for kwork.com

It is a simple library for working with kwork.com Documentation

Example:

    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");
        }
    }

About

Unoficial .NET Client for kwork.com

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages