BloggingSystem.Models.User.User C# (CSharp) 메소드

User() 공개 메소드

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