6 lines
88 B
Rust
6 lines
88 B
Rust
pub struct Image {
|
|
pub id: i32,
|
|
pub mime_type: String,
|
|
pub data: Vec<u8>,
|
|
}
|