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