query store CRUD

This commit is contained in:
Julian Krauser 2024-12-14 16:11:53 +01:00
parent 2518a1046f
commit 7497787ae4
12 changed files with 327 additions and 5 deletions

View file

@ -0,0 +1,4 @@
export interface QueryStoreViewModel {
id: number;
query: string;
}