some bare minimum trait work for songs
This commit is contained in:
parent
c8bb484a53
commit
de34c6818a
6 changed files with 236 additions and 26 deletions
|
@ -1,5 +1,17 @@
|
|||
use std::path::PathBuf;
|
||||
|
||||
#[derive(Clone, Debug, Default, PartialEq)]
|
||||
pub struct Video {
|
||||
title: String
|
||||
title: String,
|
||||
path: PathBuf,
|
||||
start_time: f32,
|
||||
end_time: f32,
|
||||
looping: bool,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Default, PartialEq)]
|
||||
pub struct VideoModel {
|
||||
videos: Vec<Video>
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue