mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-02-03 09:41:08 +00:00
13 lines
258 B
TypeScript
13 lines
258 B
TypeScript
import { DrawingElement } from './drawings/drawing-element';
|
|
|
|
export class Drawing {
|
|
drawing_id: string;
|
|
project_id: string;
|
|
rotation: number;
|
|
svg: string;
|
|
x: number;
|
|
y: number;
|
|
z: number;
|
|
element: DrawingElement; // @todo; move to context
|
|
}
|