Files
tooll3--t3/Core/Operator/Attributes/OperatorAttribute.cs
T
2026-07-13 13:13:17 +08:00

9 lines
221 B
C#

using System;
namespace T3.Core.Operator.Attributes;
public class OperatorAttribute : Attribute
{
public Guid Id { get; set; }
public string Guid { get => Id.ToString(); set => Id = System.Guid.Parse(value); }
}