忽略dll文件git
This commit is contained in:
@@ -1,50 +0,0 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user