cobble_core/minecraft/models/version_downloads.rs
1use crate::minecraft::models::File;
2use serde::{Deserialize, Serialize};
3
4/// Download information of the client/server.
5#[derive(Clone, Debug, Deserialize, Serialize)]
6pub struct VersionDownloads {
7 /// Client file
8 pub client: File,
9 /// Client mappings
10 pub client_mappings: Option<File>,
11 /// Server file
12 pub server: Option<File>,
13 /// Server mappings
14 pub server_mappings: Option<File>,
15}