2025-01-05 14:14:00 +01:00
|
|
|
import { DynamicQueryStructure } from "../../../type/dynamicQueries";
|
2024-12-18 22:27:33 +01:00
|
|
|
|
2024-12-14 16:11:53 +01:00
|
|
|
export interface CreateQueryStoreCommand {
|
2024-12-18 22:27:33 +01:00
|
|
|
title: string;
|
|
|
|
query: string | DynamicQueryStructure;
|
2024-12-14 16:11:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface UpdateQueryStoreCommand {
|
|
|
|
id: number;
|
2024-12-18 22:27:33 +01:00
|
|
|
query: string | DynamicQueryStructure;
|
2024-12-14 16:11:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface DeleteQueryStoreCommand {
|
|
|
|
id: number;
|
|
|
|
}
|