NewGaoKaoApi/PaymentSDK/AliPay/Domain/GroupInfo.cs

61 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// GroupInfo Data Structure.
/// </summary>
[Serializable]
public class GroupInfo : AopObject
{
/// <summary>
/// 创建者用户id
/// </summary>
[XmlElement("creator_uid")]
public string CreatorUid { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[XmlElement("gmt_create")]
public string GmtCreate { get; set; }
/// <summary>
/// 群ID
/// </summary>
[XmlElement("group_id")]
public string GroupId { get; set; }
/// <summary>
/// 群头像url
/// </summary>
[XmlElement("group_img")]
public string GroupImg { get; set; }
/// <summary>
/// 群名称
/// </summary>
[XmlElement("group_name")]
public string GroupName { get; set; }
/// <summary>
/// 群成员上限
/// </summary>
[XmlElement("group_threshold")]
public long GroupThreshold { get; set; }
/// <summary>
/// 群类型,0:普通群、1经费群、5活动群、6娱乐群
/// </summary>
[XmlElement("group_type")]
public string GroupType { get; set; }
/// <summary>
/// 群主用户id
/// </summary>
[XmlElement("master_uid")]
public string MasterUid { get; set; }
}
}