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