Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/FengdieActivityCreateData.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

38 lines
1011 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}