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 QueryStoreViewModel {
|
2025-03-26 09:10:08 +01:00
|
|
|
id: string;
|
2024-12-18 22:27:33 +01:00
|
|
|
title: string;
|
|
|
|
query: string | DynamicQueryStructure;
|
2025-04-17 09:17:31 +02:00
|
|
|
updatedAt: Date;
|
2024-12-14 16:11:53 +01:00
|
|
|
}
|