12 lines
243 B
C#
12 lines
243 B
C#
namespace Hawkeye.VisionBuilder.Workflow.Operations.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class Category:Attribute
|
|
{
|
|
public string Name { get; }
|
|
|
|
public Category(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
} |