noz-cli/Noz.PowerShell/NozTemplate.cs
kryptomrx 58410f8d9f feat: link and templates commands with note linking helper
NoteLinkHelper inserts wikilinks into an existing 'Siehe auch' section
or appends one. ApplyPlaceholders fills {{title}}/{{date}}/{{topic}} in
template bodies. new --template <name> fetches a server-side template
before opening the editor. SlugGuard moved to NozCli.Core in a previous
session — remove stale copy from NozCli.
2026-05-17 00:28:22 +02:00

9 lines
209 B
C#

namespace Noz.PowerShell;
public sealed class NozTemplate
{
public string Name { get; init; } = "";
public string? Description { get; init; }
public override string ToString() => Name;
}