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

26 lines
466 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,
}
#[derive(Queryable)]
pub struct Presentation {
pub id: i32,
pub title: String,
pub path: String,
pub page_count: Option<i32>,
}