Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipaySocialBaseChatGnameModifyModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

24 lines
496 B
C#

using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipaySocialBaseChatGnameModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialBaseChatGnameModifyModel : AopObject
{
/// <summary>
/// 群id
/// </summary>
[JsonProperty("group_id")]
public string GroupId { get; set; }
/// <summary>
/// 群名称
/// </summary>
[JsonProperty("group_name")]
public string GroupName { get; set; }
}
}