8 lines
196 B
C#
8 lines
196 B
C#
namespace Hawkeye.VisionBuilder.Workflow;
|
|
|
|
public class OperationDescription
|
|
{
|
|
public string Name { get; set; }
|
|
public string Category { get; set; }
|
|
public Type Type { get; set; }
|
|
} |