6 lines
119 B
Rust
6 lines
119 B
Rust
use std::{path::Path, sync::Arc};
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct DraggedProjectEntry {
|
|
pub path: Arc<Path>,
|
|
}
|