lumina/src/rust/models.rs
2023-04-06 20:37:19 -05:00

18 lines
321 B
Rust

use diesel::prelude::*;
#[derive(Queryable)]
pub struct Image {
pub id: i32,
pub title: String,
pub path: String,
}
#[derive(Queryable)]
pub struct Video {
pub id: i32,
pub title: String,
pub path: String,
pub start_time: Option<f32>,
pub end_time: Option<f32>,
pub looping: bool,
}