85b362e8cd
- add the standalone HrynCo.Common solution and projects - include the shared common library source and tests - add package metadata and a repo gitignore
8 lines
140 B
C#
8 lines
140 B
C#
namespace HrynCo.Common.Tree;
|
|
|
|
public interface ITreeNode<TKey>
|
|
where TKey : struct
|
|
{
|
|
TKey Id { get; }
|
|
TKey? ParentId { get; }
|
|
} |