summaryrefslogtreecommitdiff
path: root/JuickApi/Message.cs
blob: 9bd3230dfda8eba16ac71cad15e82ff139b11184 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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; }
    }
}