getting basic video_model.rs ready

This commit is contained in:
Chris Cochrun 2023-04-06 20:37:19 -05:00
parent c1e9feb1b3
commit 8c2d32af6b
5 changed files with 368 additions and 4 deletions

View file

@ -12,7 +12,7 @@ pub struct Video {
pub id: i32,
pub title: String,
pub path: String,
pub start_time: f32,
pub end_time: f32,
pub start_time: Option<f32>,
pub end_time: Option<f32>,
pub looping: bool,
}