ln.bson/ln.bson.tests/DocumentFolder.cs

17 lines
451 B
C#
Raw Permalink Normal View History

2022-06-03 13:07:13 +02:00
using System;
using System.Collections.Generic;
namespace ln.bson.tests
{
public class DocumentFolder
{
public Guid UniqueId { get; set; }
public string Name { get; set; }
public string Label { get; set; }
public Guid ParentId { get; set; }
internal List<DocumentFolder> _children { get; } = new List<DocumentFolder>();
public DocumentFolder[] Children => _children.ToArray();
}
}