feat(openai): 拆分平台接入和第三方接入的相关接口

This commit is contained in:
Fu Diwei
2021-10-11 22:53:34 +08:00
parent 1ca9cae514
commit 1df35b5d3a
372 changed files with 2024 additions and 1871 deletions

View File

@@ -1,38 +0,0 @@
using System;
using System.Xml.Serialization;
namespace SKIT.FlurlHttpClient.Wechat.OpenAI
{
/// <summary>
/// 表示微信智能对话 API 回调通知事件的基类。
/// </summary>
[Serializable]
public class WechatOpenAIEvent
{
public static class Serialization
{
[XmlRoot("xml")]
public interface IXmlSerializable
{
}
}
/// <summary>
/// 获取或设置 AppId。
/// </summary>
[XmlElement("appid", IsNullable = true)]
public string? AppId { get; set; }
/// <summary>
/// 获取或设置事件类型。
/// </summary>
[XmlElement("event", IsNullable = true)]
public string? Event { get; set; }
/// <summary>
/// 获取或设置消息创建时间戳。
/// </summary>
[XmlElement("createtime", IsNullable = true)]
public long? CreateTimestamp { get; set; }
}
}