6 lines
102 B
TypeScript
6 lines
102 B
TypeScript
export type UpdateScanStation = {
|
|
id: number;
|
|
description?: string;
|
|
enabled?: boolean;
|
|
};
|