mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
Initial commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
||||
pub struct ManifestItem {
|
||||
#[serde(alias = "LaunchExecutable")]
|
||||
pub launch_executable: String,
|
||||
|
||||
#[serde(alias = "ManifestLocation")]
|
||||
pub manifest_location: String,
|
||||
|
||||
#[serde(alias = "DisplayName")]
|
||||
pub display_name: String,
|
||||
|
||||
#[serde(alias = "InstallLocation")]
|
||||
pub install_location: String,
|
||||
|
||||
#[serde(alias = "AppName")]
|
||||
pub app_name: String,
|
||||
}
|
||||
Reference in New Issue
Block a user