12 lines
312 B
TypeScript
12 lines
312 B
TypeScript
|
import {Converter} from "./converter/converter";
|
||
|
export class Step {
|
||
|
public content:string = "";
|
||
|
public selectedConverter:Converter = undefined;
|
||
|
public index:number;
|
||
|
public error:boolean = false;
|
||
|
public message:string = "";
|
||
|
|
||
|
constructor(index:number) {
|
||
|
this.index = index;
|
||
|
}
|
||
|
}
|