Remotely/Server/Components/Scripts/ScriptTreeNode.cs
2021-07-29 07:57:31 -07:00

19 lines
537 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; }
public List<ScriptTreeNode> ChildItems { get; } = new();
public SavedScript Script { get; init; }
}
}