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