Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

50 lines
1.3 KiB
C#
Raw Permalink 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>
/// FengdieTemplate Data Structure.
/// </summary>
[Serializable]
public class FengdieTemplate : AopObject
{
/// <summary>
/// 模板包唯一id上传模板时自动生成
/// </summary>
[JsonProperty("id")]
public long Id { get; set; }
/// <summary>
/// 模板包开发者由开发者在package.json中指定
/// </summary>
[JsonProperty("maintainer")]
public List<string> Maintainer { get; set; }
/// <summary>
/// 模板包名称开发模板时由开发者在package.json里指定
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// 模板包预览图开发者在模板根目录放置的一张命名为snapshot.png的图片
/// </summary>
[JsonProperty("snapshot")]
public string Snapshot { get; set; }
/// <summary>
/// 模板包描述开发者在package.json里指定
/// </summary>
[JsonProperty("summary")]
public string Summary { get; set; }
/// <summary>
/// 模板包中文标题开发者在fengdie.config.js里指定
/// </summary>
[JsonProperty("title")]
public string Title { get; set; }
}
}