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.
13 lines
418 B
C#
13 lines
418 B
C#
namespace Noz.PowerShell;
|
|
|
|
public sealed class NozSearchHit
|
|
{
|
|
public string Slug { get; init; } = "";
|
|
public string Title { get; init; } = "";
|
|
public string? Description { get; init; }
|
|
public string Topic { get; init; } = "";
|
|
public string Status { get; init; } = "";
|
|
public string Lang { get; init; } = "";
|
|
|
|
public override string ToString() => Slug;
|
|
}
|