use crate::iso::boot_info::BootInfo;
use std::path::PathBuf;
#[derive(Clone, Debug)]
pub struct IsoImageFile {
pub source: PathBuf,
pub destination: String,
}
#[derive(Clone, Debug)]
pub struct IsoImage {
pub volume_id: Option<String>,
pub files: Vec<IsoImageFile>,
pub boot_info: BootInfo,
}