initial release

This commit is contained in:
2026-03-18 09:28:14 +01:00
commit 9d4bec7a17
18 changed files with 914 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace OpenQuery.Models;
public record OpenQueryOptions(
int Chunks,
int Results,
int Queries,
bool Short,
bool Long,
string Question
);