接口文件
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user