1
0
mirror of synced 2024-12-01 02:27:22 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Interfaces/FileFormatting/INode.cs

17 lines
320 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library
{
/// <summary>
/// Represets a node from an <see cref="IArchiveFile"/>
/// </summary>
public interface INode
{
string Name { get; set; }
}
}