~cszikszoy/do-plugins/fix-confluence

« back to all changes in this revision

Viewing changes to Microblogging/src/MicroblogStatus.cs

  • Committer: Alex Launi
  • Date: 2009-06-13 16:12:05 UTC
  • mfrom: (622.1.1 twitpocolypse)
  • Revision ID: alex.launi@gmail.com-20090613161205-enec9vxthtmtk6we
Merge fix for the bzr merge !!!twitpocolypse!!!

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
        
9
9
        public class MicroblogStatus : Item
10
10
        {                               
11
 
                public MicroblogStatus (int id, string status, string owner, DateTime time)
 
11
                public MicroblogStatus (long id, string status, string owner, DateTime time)
12
12
                {
13
13
                        Id = id;
14
14
                        Owner = owner;
28
28
                        get { return "microblogging.svg@" + GetType ().Assembly.FullName; }
29
29
                }
30
30
                
31
 
                public int Id { get; private set; }
 
31
                public long Id { get; private set; }
32
32
                public string Owner { get; private set; }
33
33
                public string Status { get; private set; }
34
34
                public DateTime Created { get; private set; }
36
36
        
37
37
        public class MicroblogStatusReply
38
38
        {
39
 
                public MicroblogStatusReply (Nullable<int> inReplyToID, string status)
 
39
                public MicroblogStatusReply (Nullable<long> inReplyToID, string status)
40
40
                {
41
41
                        Status = status;
42
42
                        InReplyToId = inReplyToID;                      
43
43
                }
44
44
        
45
 
                public Nullable<int> InReplyToId { get; private set; }
 
45
                public Nullable<long> InReplyToId { get; private set; }
46
46
                public string Status { get; private set; }
47
47
        }
48
48
}