忽略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,60 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// GroupInfo Data Structure.
/// </summary>
[Serializable]
public class GroupInfo : AopObject
{
/// <summary>
/// 创建者用户id
/// </summary>
[JsonProperty("creator_uid")]
public string CreatorUid { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[JsonProperty("gmt_create")]
public string GmtCreate { get; set; }
/// <summary>
/// 群ID
/// </summary>
[JsonProperty("group_id")]
public string GroupId { get; set; }
/// <summary>
/// 群头像url
/// </summary>
[JsonProperty("group_img")]
public string GroupImg { get; set; }
/// <summary>
/// 群名称
/// </summary>
[JsonProperty("group_name")]
public string GroupName { get; set; }
/// <summary>
/// 群成员上限
/// </summary>
[JsonProperty("group_threshold")]
public long GroupThreshold { get; set; }
/// <summary>
/// 群类型,0:普通群、1经费群、5活动群、6娱乐群
/// </summary>
[JsonProperty("group_type")]
public string GroupType { get; set; }
/// <summary>
/// 群主用户id
/// </summary>
[JsonProperty("master_uid")]
public string MasterUid { get; set; }
}
}