headplane/app/types/Route.ts

14 lines
238 B
TypeScript
Raw Normal View History

2024-12-31 10:30:14 +05:30
import type { Machine } from './Machine';
2024-03-25 18:47:15 -04:00
export interface Route {
2024-12-31 10:30:14 +05:30
id: string;
node: Machine;
prefix: string;
advertised: boolean;
enabled: boolean;
isPrimary: boolean;
createdAt: string;
updatedAt: string;
deletedAt: string;
2024-03-25 18:47:15 -04:00
}