12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace JiaZhiQuan.Common.Messaging.Models
- {
- public enum PostAuthAction
- {
- START = 1, // 开始审核
- UPLOAD = 2, // 上传并转码完成
- }
- public class PostAuthModel
- {
- public long PostId { get; set; }
- public PostAuthAction Action { get; set; }
- public string VideoId { get; set; }
- public static string GetMsgKey()
- {
- return "JZQ_Post_Auth_Msg";
- }
- }
- }
|