12 lines
200 B
TypeScript
12 lines
200 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
export type ScanStation = {
|
|
id: number;
|
|
description?: string;
|
|
track: string;
|
|
key: string;
|
|
enabled: boolean;
|
|
}
|