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

User() public method

public User ( ) : System.Collections.Generic
return System.Collections.Generic
        public User()
        {
            this.Posts = new HashSet<Post>();
            this.Comments = new HashSet<Comment>();
        }
User