19 lines
311 B
C#
19 lines
311 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Main
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 发送内容模板
|
|||
|
/// </summary>
|
|||
|
public enum SendTemplateType
|
|||
|
{
|
|||
|
卡片 = 1,
|
|||
|
图文 = 2,
|
|||
|
自定义 = 3,
|
|||
|
}
|
|||
|
}
|