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