2 Star 10 Fork 2

汶Sir/立特软件机器人数据模型

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ActionAttribute.cs 1.79 KB
一键复制 编辑 原始数据 按行查看 历史
汶Sir 提交于 2022-08-09 22:06 . litsdk2.0版本开始
namespace litsdk
{
/// <summary>
/// 基类的属性
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class ActionAttribute : Attribute
{
/// <summary>
/// 中文名,目前不做其它语言版本
/// </summary>
public string Name { get; set; }
/// <summary>
/// 所属分类,比如 网络/FTP
/// </summary>
public string Category { get; set; }
/// <summary>
/// 图标编号,如 network ,ftp
/// </summary>
public string Icon { get; set; }
/// <summary>
/// 索引,控件位置排序使用
/// </summary>
public int Order { get; set; }
/// <summary>
/// 帮助链接,如本地链接或http链接
/// </summary>
public string HelpLink { get; set; }
/// <summary>
/// 引用文件,以逗号分割,如 a.dll,b.txt,c.exe
/// </summary>
public string RefFile { get; set; }
/// <summary>
/// 中文描述,说明这个组件的功能
/// </summary>
public string Description { get; set; }
/// <summary>
/// 配置提示,如 对字符 {a} 使用正则 {b} 提取数据并保存至 {c}
/// </summary>
public string Summary { get; set; }
///// <summary>
///// 是否会产生界面独占,有则不能同时运行多个此类项目
///// </summary>
//public bool IsFront { get; set; }
///// <summary>
///// 是否要windows消息,如ie和chrome等操作需要界面
///// </summary>
//public bool IsWinForm { get; set; }
///// <summary>
///// 是否linux的
///// </summary>
//public bool IsLinux { get; set; }
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/rq204/litsdk.git
git@gitee.com:rq204/litsdk.git
rq204
litsdk
立特软件机器人数据模型
master

搜索帮助