critch/src/file.rs

8 lines
104 B
Rust
Raw Normal View History

2024-11-13 20:00:15 +00:00
use uuid::Uuid;
#[derive(sqlx::FromRow)]
pub struct File {
id: Option<Uuid>,
artwork: usize,
}