21 lines
508 B
C#
21 lines
508 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayOfflineProviderMonitorLogSyncModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayOfflineProviderMonitorLogSyncModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 数据回流日志
|
|
/// </summary>
|
|
[XmlArray("logs")]
|
|
[XmlArrayItem("i_s_v_log_sync")]
|
|
public List<ISVLogSync> Logs { get; set; }
|
|
}
|
|
}
|