Model.Blog.Blog C# (CSharp) 메소드

Blog() 공개 메소드

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