添加项目文件。

This commit is contained in:
2023-03-13 15:00:34 +08:00
parent 42bf06ca3e
commit 1d73df3235
1205 changed files with 185078 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
using JNPF.DependencyInjection;
namespace JNPF.VisualDev.Engine.Model.CodeGen;
/// <summary>
/// 代码生成常规Index列表页面头部按钮配置.
/// </summary>
[SuppressSniffer]
public class IndexButtonDesign
{
/// <summary>
/// 按钮类型.
/// </summary>
public string @Type { get; set; }
/// <summary>
/// 图标.
/// </summary>
public string Icon { get; set; }
/// <summary>
/// 方法.
/// </summary>
public string Method { get; set; }
/// <summary>
/// 按钮值.
/// </summary>
public string Value { get; set; }
/// <summary>
/// 按钮文本.
/// </summary>
public string Label { get; set; }
/// <summary>
/// 是否禁用.
/// </summary>
public string Disabled { get; set; }
/// <summary>
/// 是否详情.
/// </summary>
public bool IsDetail { get; set; }
}