From 0cb38b0c3d636663f26b0342d9abf53ec2c66395 Mon Sep 17 00:00:00 2001 From: John Andrews Date: Thu, 17 Oct 2024 11:04:02 +1300 Subject: [PATCH] tags --- BasicNodes/Functions/Tag.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/BasicNodes/Functions/Tag.cs b/BasicNodes/Functions/Tag.cs index 10f6ef4d..36dc4340 100644 --- a/BasicNodes/Functions/Tag.cs +++ b/BasicNodes/Functions/Tag.cs @@ -24,17 +24,17 @@ public class Tag : Node /// public override LicenseLevel LicenseLevel => LicenseLevel.Basic; - /// - /// Gets or sets the tags - /// - [TagSelection(1)] - public List Tags { get; set; } - /// /// Gets or sets if the tags should replace the existing tags /// - [Boolean(2)] + [Boolean(1)] public bool Replace { get; set; } + + /// + /// Gets or sets the tags + /// + [TagSelection(2)] + public List Tags { get; set; } /// public override int Execute(NodeParameters args)