Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

48 lines
998 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}