noz-cli/Noz.PowerShell/NozGardenStats.cs
kryptomrx f45b31defa feat: graph and search API client with PS analysis cmdlets
Get-NozGraph, Find-NozNote, Measure-NozGarden, Set-NozNoteStatus,
Get-NozOrphans — graph edges, Meilisearch search, garden stats,
frontmatter status patch, orphan detection from inbound link analysis.
2026-05-17 00:27:45 +02:00

15 lines
528 B
C#

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<string, int> NotesByTopic { get; init; } = new();
public Dictionary<string, int> NotesByLang { get; init; } = new();
}