mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2025-12-06 15:15:36 +01:00
10 lines
183 B
Rust
10 lines
183 B
Rust
use serde::Serialize;
|
|
|
|
#[derive(sqlx::FromRow, Serialize)]
|
|
pub struct AuthorAnnotation {
|
|
pub id: i32,
|
|
pub title: String,
|
|
pub text: String,
|
|
pub file: Option<String>,
|
|
}
|