BlogSharp.Model.Post.Post C# (CSharp) Method

Post() public method

Initializes a new instance of the Post class.
public Post ( ) : System
return System
        public Post()
        {
            this.tags = new List<Tag>();
            this.comments = new List<PostComment>();
        }