8 lines
104 B
Rust
8 lines
104 B
Rust
|
use uuid::Uuid;
|
||
|
|
||
|
#[derive(sqlx::FromRow)]
|
||
|
pub struct File {
|
||
|
id: Option<Uuid>,
|
||
|
artwork: usize,
|
||
|
}
|