21 lines
526 B
C#
21 lines
526 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// FengdiePreviewQueryRespModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class FengdiePreviewQueryRespModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 云凤蝶页面预览数据列表
|
|
/// </summary>
|
|
[XmlArray("list")]
|
|
[XmlArrayItem("fengdie_preview_pages_model")]
|
|
public List<FengdiePreviewPagesModel> List { get; set; }
|
|
}
|
|
}
|