import { BootTypeEnum } from './BootTypeEnum';
/** Available boots */
export interface Netboot {
    /** boot id */
    bootId: number;
    /** the boot system */
    bootType: BootTypeEnum;
    /** the boot description */
    description: string;
    /** The boot kernel */
    kernel: string;
}
//# sourceMappingURL=Netboot.d.ts.map