DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/RPC/Configuration/ConfigurationUpdate.rs
1//! Configuration-update DTO. Carries key + value + scope.
2
3use serde::{Deserialize, Serialize};
4
5use crate::RPC::Configuration::ConfigurationScope;
6
7#[derive(Debug, Clone, Serialize, Deserialize)]
8pub struct Struct {
9 pub key:String,
10
11 pub value:serde_json::Value,
12
13 pub scope:ConfigurationScope::Enum,
14}