Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipaySocialBaseChatGroupsQueryModel.cs

18 lines
401 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipaySocialBaseChatGroupsQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialBaseChatGroupsQueryModel : AopObject
{
/// <summary>
/// 上次接口返回的key初始传0
/// </summary>
[JsonProperty("last_key")]
public long LastKey { get; set; }
}
}