忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,48 +0,0 @@
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; }
}
}