PostAuthModel.cs 526 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace JiaZhiQuan.Common.Messaging.Models
  5. {
  6. public enum PostAuthAction
  7. {
  8. START = 1, // 开始审核
  9. UPLOAD = 2, // 上传并转码完成
  10. }
  11. public class PostAuthModel
  12. {
  13. public long PostId { get; set; }
  14. public PostAuthAction Action { get; set; }
  15. public string VideoId { get; set; }
  16. public static string GetMsgKey()
  17. {
  18. return "JZQ_Post_Auth_Msg";
  19. }
  20. }
  21. }