Skip to main content

pebble_cms/models/
media.rs

1use serde::Serialize;
2
3#[derive(Debug, Clone, Serialize)]
4pub struct Media {
5    pub id: i64,
6    pub filename: String,
7    pub original_name: String,
8    pub mime_type: String,
9    pub size_bytes: i64,
10    pub alt_text: String,
11    pub uploaded_by: Option<i64>,
12    pub created_at: String,
13}