using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlisisReportRow Data Structure.
///
[Serializable]
public class AlisisReportRow : AopObject
{
///
/// 报表行信息,每个对象是一列的数据
///
[JsonProperty("row_data")]
public List RowData { get; set; }
}
}