NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialBaseChatGroupCr...

25 lines
626 B
C#
Raw Permalink 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>
/// AlipaySocialBaseChatGroupCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialBaseChatGroupCreateModel : AopObject
{
/// <summary>
/// 请求唯一id用户id+时间戳+随机数),防止重复建群
/// </summary>
[XmlElement("client_id")]
public string ClientId { get; set; }
/// <summary>
/// 群名称
/// </summary>
[XmlElement("group_name")]
public string GroupName { get; set; }
}
}