2026-06-01 17:59:23 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace QYZH.InteractiveMagazine.Models.Enum
|
|
|
|
|
|
{
|
|
|
|
|
|
public enum ApiVersionEnum
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Platform
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("平台管理")]
|
|
|
|
|
|
Platform = 10,
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Wechat
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("小程序管理")]
|
|
|
|
|
|
Wechat = 20,
|
2026-06-09 14:36:46 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Wechat
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Description("SDK")]
|
|
|
|
|
|
SDK = 30,
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|