Articles.Models.Article.Article C# (CSharp) 메소드

Article() 공개 메소드

public Article ( ) : System
리턴 System
        public Article()
        {
            this.Likes = new HashSet<Like>();
            this.Tags = new HashSet<Tag>();
            this.Comments = new HashSet<Comment>();
        }
Article