Model.Blog.Blog C# (CSharp) Method

Blog() public method

public Blog ( ) : System
return System
    	public Blog()
    	{
    		Tags = new HashSet<Tag>();
    		Users = new HashSet<User>();
    		Posts = new HashSet<Post>();
			SecurityKey = Guid.NewGuid();
		}
Blog