mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
9 lines
223 B
Rust
9 lines
223 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
|
pub struct SteamSettings {
|
|
pub location: Option<String>,
|
|
pub create_collections: bool,
|
|
pub optimize_for_big_picture: bool,
|
|
}
|