12345678910111213141516171819202122 |
- namespace JiaZhiQuan.Common.Messaging.Models
- {
- public enum StatusCheckType
- {
- /// <summary>
- /// 用户成长体系,版本启用
- /// </summary>
- UserGrowthVersionEnabled = 0
- }
- public class StatusCheckModel
- {
- public StatusCheckType Type;
- public string Content;
-
- public static string GetMsgKey()
- {
- return "JZQ_Status_Check_Action_Msg";
- }
- }
- }
|