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 Tags { get; set; } public Photo Photo { get; set; } } }