9 lines
221 B
C#
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); }
|
|
} |