NewGaoKaoApi/PaymentSDK/AliPay/Domain/FengdieSitesPageModel.cs

51 lines
1.3 KiB
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>
/// FengdieSitesPageModel Data Structure.
/// </summary>
[Serializable]
public class FengdieSitesPageModel : AopObject
{
/// <summary>
/// 站点页面别名
/// </summary>
[XmlElement("alias")]
public string Alias { get; set; }
/// <summary>
/// 是否为首页
/// </summary>
[XmlElement("is_home_page")]
public bool IsHomePage { get; set; }
/// <summary>
/// 首页原始 url仅在 isHomePage = true 时候才存在
/// </summary>
[XmlElement("origin_url")]
public string OriginUrl { get; set; }
/// <summary>
/// 活动页面 schema 数据
/// </summary>
[XmlArray("schema")]
[XmlArrayItem("fengdie_activity_schema_model")]
public List<FengdieActivitySchemaModel> Schema { get; set; }
/// <summary>
/// H5页面预览图
/// </summary>
[XmlElement("snapshot")]
public string Snapshot { get; set; }
/// <summary>
/// 页面访问地址
/// </summary>
[XmlElement("url")]
public string Url { get; set; }
}
}