using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// TableInfoResult Data Structure.
///
[Serializable]
public class TableInfoResult : AopObject
{
///
/// 返回TableListResult集合
///
[JsonProperty("table_info_list")]
public List TableInfoList { get; set; }
}
}