aboutsummaryrefslogtreecommitdiff
path: root/src/metadata.rs
blob: ff45af2b9e69ecbea34fb635a69353ffda59a232 (plain)
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct DirectoryInfo {
    pub name: String,
}

#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct ItemInfo {
    pub title: String,
}