Skip to main content

file_organizer/models/
organized_file.rs

1use std::path::PathBuf;
2
3#[derive(Debug)]
4pub struct OrganizedFile {
5    pub source_path: PathBuf,
6    pub target_path: PathBuf,
7    pub file_name: String,
8    pub size: u64,
9}