首次提交
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace NBF
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
public class BuildTaskInfoAttribute : Attribute
|
||||
{
|
||||
public string Name;
|
||||
public int Id;
|
||||
|
||||
public bool Visable;
|
||||
|
||||
public BuildTaskInfoAttribute(int id, string name, bool visable = true)
|
||||
{
|
||||
Id = id;
|
||||
Name = name;
|
||||
Visable = visable;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user