NewGaoKaoApi/PaymentSDK/AliPay/Domain/FengdieActivityComponentMod...

27 lines
887 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// FengdieActivityComponentModel Data Structure.
/// </summary>
[Serializable]
public class FengdieActivityComponentModel : AopObject
{
/// <summary>
/// 指定组件数据,默认为 schema 默认数据
/// </summary>
[XmlArray("component_data")]
[XmlArrayItem("fengdie_activity_schema_model")]
public List<FengdieActivitySchemaModel> ComponentData { get; set; }
/// <summary>
/// 组件名称,即组件目录下 package.json 文件的 fengdie.name 字段极少个别模板包fengdie.name和组件文件夹名称不一致请联系模板开发者修改为一致
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
}
}