8 lines
147 B
C#
8 lines
147 B
C#
using System;
|
|
|
|
namespace T3.Core.Operator.Attributes;
|
|
|
|
public class InputAttribute : OperatorAttribute
|
|
{
|
|
public Type MappedType { get; set; }
|
|
} |