2025-08-01 12:49:36 +08:00

6 lines
88 B
Rust

pub struct Image {
pub id: i32,
pub mime_type: String,
pub data: Vec<u8>,
}