NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialBaseChatGinvSen...

27 lines
642 B
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;
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; }
}
}