HomeDisk/types/src/fs/upload.rs

11 lines
259 B
Rust
Raw Normal View History

2022-06-08 22:02:20 +00:00
//! HTTP `/fs/upload` Request and Response types
2022-04-24 19:31:50 +00:00
use serde::{Deserialize, Serialize};
2022-06-11 08:19:47 +00:00
/// HTTP `/fs/upload` Queries
2022-04-24 19:31:50 +00:00
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Pagination {
2022-06-08 22:02:20 +00:00
/// Path where the file will be uploaded
2022-04-24 19:31:50 +00:00
pub path: String,
}