~ircdotnet-dev/ircdotnet/devel

« back to all changes in this revision

Viewing changes to Samples/TwitterBot/TwitterUser.cs

  • Committer: Alex Regueiro
  • Date: 2010-08-27 22:03:06 UTC
  • Revision ID: alexreg@gmail.com-20100827220306-iqf7ahtgq3ryx2vr
TwitterBot sample is now working. Bot provides the ability for IRC users to log in to Twitter, log out, fetch recent tweets, and send a tweet, among other things. Can handle multiple IRC/Twitter users simultaneously.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
using System;
2
 
using System.Collections.Generic;
3
 
using System.Linq;
4
 
using System.Text;
5
 
using TweetSharp;
6
 
using TweetSharp.Twitter;
7
 
using TweetSharp.Twitter.Fluent;
8
 
 
9
 
namespace TwitterBot
10
 
{
11
 
    public class TwitterUser
12
 
    {
13
 
        public TwitterUser()
14
 
        {
15
 
            //
16
 
        }
17
 
 
18
 
        //
19
 
    }
20
 
}