public static Post FromIPost(IPost post)
        {
            var p = new Post();

            post.CopyTo(p);
            return(p);
        }