mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-17 10:41:58 +08:00
25 lines
848 B
C#
25 lines
848 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Work.Events
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 INFO.device_feature_change 事件的数据。</para>
|
|
/// <para>REF: https://open.work.weixin.qq.com/api/doc/90002/90151/90751 </para>
|
|
/// </summary>
|
|
public class DeviceFeatureChangeEvent : WechatWorkEvent, WechatWorkEvent.Types.IXmlSerializable
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置服务商 CorpId。
|
|
/// </summary>
|
|
[System.Xml.Serialization.XmlElement("ServiceCorpId")]
|
|
public string ServiceCorpId { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// 获取或设置设备序列号。
|
|
/// </summary>
|
|
[System.Xml.Serialization.XmlElement("DeviceSn")]
|
|
public string DeviceSerialNumber { get; set; } = default!;
|
|
}
|
|
}
|