mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-05-02 08:42:50 +00:00
7 lines
90 B
TypeScript
7 lines
90 B
TypeScript
export class Point {
|
|
constructor(
|
|
public x?: number,
|
|
public y?: number
|
|
) {}
|
|
}
|