CommentAuthModel.cs 546 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace JiaZhiQuan.Common.Messaging.Models
  5. {
  6. public class CommentAuthModel
  7. {
  8. /// <summary>
  9. /// 评论Id、评论回复Id
  10. /// </summary>
  11. public int CommentId { get; set; }
  12. /// <summary>
  13. /// 0 动态评论
  14. /// 1 动态评论回复
  15. /// </summary>
  16. public int Type { get; set; } = 0;
  17. public static string GetMsgKey()
  18. {
  19. return "JZQ_Comment_Auth_Msg";
  20. }
  21. }
  22. }