summaryrefslogtreecommitdiff
path: root/JuickApi/Message.cs
diff options
context:
space:
mode:
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; }
+ }
+}