converter/src/app/step.ts

14 lines
302 B
TypeScript
Raw Normal View History

2016-09-22 00:15:11 +02:00
import {Converter} from "./converter/converter";
2016-09-22 00:15:11 +02:00
export class Step {
public content: string = "";
public selectedConverter: Converter = undefined;
public index: number;
public error: boolean = false;
public message: string = "";
2016-09-22 00:15:11 +02:00
constructor(index: number) {
this.index = index;
}
}