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.
10 lines
177 B
C#
10 lines
177 B
C#
namespace NozCli.Core.Models;
|
|
|
|
public record SearchHit(
|
|
string Slug,
|
|
string Title,
|
|
string? Description,
|
|
string Topic,
|
|
string Status,
|
|
string Lang
|
|
);
|