export interface ILoadLineResponse { colIndex: number; colValue: string; colTotal: number; } export class TLoadLineResponse implements ILoadLineResponse { colIndex: number = 0; colValue: string = ""; colTotal: number = 0; }