1
2
3
4
5
6
7
8
use serde::Deserialize;

#[derive(Debug, Clone, Deserialize)]
pub struct Track {
    pub position: String,
    pub title: String,
    pub duration: String,
}