Care.Views.Common.CommentView.AddEmptyTipCommentCleverly C# (CSharp) Method

AddEmptyTipCommentCleverly() private method

private AddEmptyTipCommentCleverly ( ) : void
return void
        private void AddEmptyTipCommentCleverly()
        {
            if (Comments.Count == 0)
            {
                CommentViewModel tipComment = new CommentViewModel()
                {
                    Content = "尚无评论",
                    Title = "呃~",
                    Type = EntryType.NotSet
                };
                Comments.Add(tipComment);
            }
        }