Initial commit

This commit is contained in:
Philip
2021-09-05 12:46:34 +02:00
commit f99b6cd9aa
9 changed files with 1358 additions and 0 deletions
+20
View File
@@ -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,
}