38 lines
1011 B
C#
38 lines
1011 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// FengdieActivityCreateData Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class FengdieActivityCreateData : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// H5应用的名称,用户自定义,最终用于生成URL。生成URL的规则“域名/p/f/${name}/页面名称.html”
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("name")]
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 用户自定义,到了该时间后,用户将访问不到该应用
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("offline_time")]
|
|||
|
|
public string OfflineTime { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// H5应用的页面在编辑器中默认展示的数据
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("page")]
|
|||
|
|
|
|||
|
|
public List<FengdieActivityCreatePageData> Page { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// H5应用标题,用户自定义
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("title")]
|
|||
|
|
public string Title { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|