Remotely/Server/Components/Scripts/ScriptTreeNode.cs
2023-07-25 14:05:59 -07:00

19 lines
572 B
C#

using Remotely.Server.Components.TreeView;
using Remotely.Shared.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Remotely.Server.Components.Scripts;
public class ScriptTreeNode
{
public string Id { get; } = Guid.NewGuid().ToString();
public TreeItemType ItemType { get; set; }
public string Name { get; init; } = string.Empty;
public ScriptTreeNode? ParentNode { get; set; }
public List<ScriptTreeNode> ChildItems { get; } = new();
public SavedScript? Script { get; init; }
}