This commit is contained in:
John Andrews
2024-10-17 11:04:02 +13:00
parent b96fe2bc42
commit 0cb38b0c3d

View File

@@ -24,17 +24,17 @@ public class Tag : Node
/// <inheritdoc />
public override LicenseLevel LicenseLevel => LicenseLevel.Basic;
/// <summary>
/// Gets or sets the tags
/// </summary>
[TagSelection(1)]
public List<Guid> Tags { get; set; }
/// <summary>
/// Gets or sets if the tags should replace the existing tags
/// </summary>
[Boolean(2)]
[Boolean(1)]
public bool Replace { get; set; }
/// <summary>
/// Gets or sets the tags
/// </summary>
[TagSelection(2)]
public List<Guid> Tags { get; set; }
/// <inheritdoc />
public override int Execute(NodeParameters args)