Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/GroupInfo.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

60 lines
1.3 KiB
C#
Raw 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>
/// 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; }
}
}