1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-06-02 23:17:43 +02:00

19 lines
326 B
TypeScript

export type fieldType = 'string' | 'number' | 'boolean';
export enum DefaultsTasks {
Indexing = 1, 'Database Reset' = 2
}
export interface ConfigTemplateEntry {
id: string;
name: string;
type: fieldType;
defaultValue: any;
}
export interface TaskDTO {
Name: string;
ConfigTemplate: ConfigTemplateEntry[];
}