converter/src/app/step.ts

14 lines
302 B
TypeScript
Raw Normal View History

2017-04-15 19:04:49 +02:00
import {Converter} from './converter/converter';
2016-09-22 00:15:11 +02:00
export class Step {
2024-01-28 21:16:48 +01:00
public content: string = '';
public selectedConverter: Converter | undefined;
public index: number;
2024-01-28 21:16:48 +01:00
public error: boolean = false;
public message: string = '';
2016-09-22 00:15:11 +02:00
constructor(index: number) {
this.index = index;
}
}