private void GetComments()
        {
            this.comments.Clear();
            List <Comment> data = APIConnection.GetComments(this.post.id);

            foreach (Comment c in data)
            {
                this.comments.Add(c);
            }
        }