summaryrefslogtreecommitdiff
path: root/JuickApi/Message.cs
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2013-02-08 16:30:43 +0400
committerGravatar Vitaly Takmazov2013-02-08 16:30:43 +0400
commitf8a31a6f31a1f897a3a3eb5a82b0c9ab13cad55a (patch)
treea6066956a0cb5ab67d7d58ca52f29ec9eaa2178b /JuickApi/Message.cs
parent3879b6fd52395ba47c070b1085d4212f0d376cb4 (diff)
parent7eb3fc7465c038de80e140f6956999aeb035505a (diff)
Merge branch 'master' of https://bitbucket.org/vitalyster/juick-windowsphone
Diffstat (limited to 'JuickApi/Message.cs')
-rw-r--r--JuickApi/Message.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/JuickApi/Message.cs b/JuickApi/Message.cs
new file mode 100644
index 0000000..9bd3230
--- /dev/null
+++ b/JuickApi/Message.cs
@@ -0,0 +1,16 @@
+using System.Collections.Generic;
+
+namespace JuickApi
+{
+ public class Message
+ {
+ public int Mid { get; set; }
+ public int Rid { get; set; }
+ public string Body { get; set; }
+ public User User { get; set; }
+ public string Timestamp { get; set; }
+ public int Replies { get; set; }
+ public List<string> Tags { get; set; }
+ public Photo Photo { get; set; }
+ }
+}