9 lines
157 B
TypeScript
9 lines
157 B
TypeScript
export type ResponseScanStation = {
|
|
id: number;
|
|
description?: string;
|
|
key?: string;
|
|
prefix: string;
|
|
track: any;
|
|
enabled: boolean;
|
|
};
|