using System; using System.Collections.Generic; using System.Text; namespace JiaZhiQuan.Common.Messaging.Models { public class CommentAuthModel { /// /// 评论Id、评论回复Id /// public int CommentId { get; set; } /// /// 0 动态评论 /// 1 动态评论回复 /// public int Type { get; set; } = 0; public static string GetMsgKey() { return "JZQ_Comment_Auth_Msg"; } } }