namespace Noz.PowerShell; public sealed class NozGardenStats { public int TotalNotes { get; init; } public int SeedCount { get; init; } public int BuddingCount { get; init; } public int EvergreenCount { get; init; } public int TopicCount { get; init; } public int LinkCount { get; init; } public int OrphanCount { get; init; } public Dictionary NotesByTopic { get; init; } = new(); public Dictionary NotesByLang { get; init; } = new(); }