c1c865e675
This enum type is then used in the UI and can also be used internally in the operator type. This was done to prevent the need of local enum types polluting to the outside and their need to register the input relevant handlers for each of them.
9 lines
165 B
C#
9 lines
165 B
C#
using System;
|
|
|
|
namespace T3.Core.Operator.Attributes
|
|
{
|
|
public class InputAttribute : OperatorAttribute
|
|
{
|
|
public Type MappedType { get; set; }
|
|
}
|
|
} |