Monorepo with centralized build props, npm workspaces, LlamaSharp AI, SQLite/SQLCipher storage, Svelte frontend, and unified smoke tests. Co-Authored-By: Oz <oz-agent@warp.dev>
16 lines
449 B
C#
16 lines
449 B
C#
namespace Journal.Core.Dtos;
|
|
|
|
public sealed record EntrySearchRequestDto(
|
|
string? Query = null,
|
|
string? Section = null,
|
|
string? StartDate = null,
|
|
string? EndDate = null,
|
|
IReadOnlyList<string>? Tags = null,
|
|
IReadOnlyList<string>? Types = null,
|
|
IReadOnlyList<string>? Checked = null,
|
|
IReadOnlyList<string>? Unchecked = null);
|
|
|
|
public sealed record EntrySearchResultDto(
|
|
string FileName,
|
|
JournalEntryDto Entry);
|