10 lines
243 B
C#
10 lines
243 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); }
|
|
}
|
|
} |