Files
fleet/frontend/interfaces/variables.ts
T

12 lines
178 B
TypeScript

export interface IVariable {
id: number;
name: string;
created_at: string;
updated_at: string;
}
export interface IVariableFormData {
name: string;
value: string;
}