using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayOfflineProviderMonitorLogSyncModel Data Structure.
///
[Serializable]
public class AlipayOfflineProviderMonitorLogSyncModel : AopObject
{
///
/// 数据回流日志
///
[JsonProperty("logs")]
public List Logs { get; set; }
}
}