ff-admin-server/src/command/queryStoreCommand.ts

16 lines
329 B
TypeScript
Raw Normal View History

2024-12-18 22:27:33 +01:00
import { DynamicQueryStructure } from "../type/dynamicQueries";
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;
}