27 lines
642 B
C#
27 lines
642 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipaySocialBaseChatGinvSendModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipaySocialBaseChatGinvSendModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 群id
|
||
/// </summary>
|
||
[XmlElement("group_id")]
|
||
public string GroupId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 邀请的好友id列表,最多50人
|
||
/// </summary>
|
||
[XmlArray("uids")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> Uids { get; set; }
|
||
}
|
||
}
|