接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,48 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// MemberInfo Data Structure.
/// </summary>
[Serializable]
public class MemberInfo : AopObject
{
/// <summary>
/// 群成员性别m表示男f表示女
/// </summary>
[JsonProperty("gender")]
public string Gender { get; set; }
/// <summary>
/// 群内昵称
/// </summary>
[JsonProperty("group_nick_name")]
public string GroupNickName { get; set; }
/// <summary>
/// 邀请人id
/// </summary>
[JsonProperty("inviter_uid")]
public string InviterUid { get; set; }
/// <summary>
/// 群成员头像url
/// </summary>
[JsonProperty("member_img")]
public string MemberImg { get; set; }
/// <summary>
/// 用户昵称
/// </summary>
[JsonProperty("nick_name")]
public string NickName { get; set; }
/// <summary>
/// 群成员用户id
/// </summary>
[JsonProperty("uid")]
public string Uid { get; set; }
}
}