using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipaySocialBaseChatGroupsQueryModel Data Structure.
///
[Serializable]
public class AlipaySocialBaseChatGroupsQueryModel : AopObject
{
///
/// 上次接口返回的key,初始传0
///
[JsonProperty("last_key")]
public long LastKey { get; set; }
}
}