use serde::Deserialize;
use utoipa::{IntoParams, ToSchema};
#[derive(Debug, Deserialize, ToSchema)]
pub struct FileSaveRequest {
pub content: String,
pub name: Option<String>,
}
#[derive(Debug, Deserialize, IntoParams, ToSchema)]
#[into_params(parameter_in = Query)]
pub struct FileListQuery {
pub path: Option<String>,
}
#[derive(Debug, Deserialize, IntoParams, ToSchema)]
#[into_params(parameter_in = Query)]
pub struct FileDownloadQuery {
pub version: Option<String>,
}