BloggingSystem.Models.Post.Post C# (CSharp) Method

Post() public method

public Post ( ) : System
return System
        public Post()
        {
            this.Comments = new HashSet<Comment>();
            this.Tags = new HashSet<Tag>();
        }
Post