cnf-backend-types
Version:
A package containing types for CNF Backend (and frontend?)
16 lines (14 loc) • 342 B
text/typescript
/* eslint-disable semi */
import Tenant from '../user-diagram/tenant.model';
export default interface ImportRun {
id: number;
tenant_id: number;
fase: string;
stato: string;
flusso: string;
origin_path: string;
created_at: Date;
updated_at: Date;
extra_config: JSON;
tenant?: Tenant;
}