feat(work): 随官方更新客户标签回调通知事件回调模型

This commit is contained in:
Fu Diwei 2021-08-19 23:05:49 +08:00
parent 48c7ce779e
commit ac340119d1

View File

@ -32,12 +32,18 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Events
/// 获取或设置 ID 类型。
/// </summary>
[System.Xml.Serialization.XmlElement("TagType", IsNullable = true)]
public string IdType { get; set; } = default!;
public string? IdType { get; set; }
/// <summary>
/// 获取或设置企业标签或标签分组 ID。
/// </summary>
[System.Xml.Serialization.XmlElement("Id", IsNullable = true)]
public string? TagOrGroupId { get; set; }
/// <summary>
/// 获取或设置规则组 ID。
/// </summary>
[System.Xml.Serialization.XmlElement("StrategyId", IsNullable = true)]
public string? StrategyId { get; set; }
}
}