using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// MiniAppModelQueryResponse Data Structure.
///
[Serializable]
public class MiniAppModelQueryResponse : AopObject
{
///
/// 模型查询类型
///
[XmlElement("model_type")]
public string ModelType { get; set; }
///
/// 小程序核心模型的json化字符串
///
[XmlArray("records")]
[XmlArrayItem("string")]
public List Records { get; set; }
}
}