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

User() public method

public User ( ) : System.Collections.Generic
return System.Collections.Generic
        public User()
        {
            this.newsArticles = new List<NewsArticle>();
            this.comments = new List<Comment>();
        }
User