25 lines
626 B
C#
25 lines
626 B
C#
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; }
|
||
}
|
||
}
|