25 lines
763 B
C#
25 lines
763 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipaySocialBaseIdpsourceSyncModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipaySocialBaseIdpsourceSyncModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 数据内容为json格式的字符串,要求数据内容所有字段平铺,不支持复杂数据结构,时间类型请统一使用unix毫秒时间戳。
|
||
/// </summary>
|
||
[XmlElement("data")]
|
||
public string Data { get; set; }
|
||
|
||
/// <summary>
|
||
/// 能唯一标识一份外部数据的名称,确定后不可变更,不可重复
|
||
/// </summary>
|
||
[XmlElement("name")]
|
||
public string Name { get; set; }
|
||
}
|
||
}
|