JaneDoe-ZS/nap_data/src/tables/unlock_config_template.rs
xeon 84397a847e Implement proper Avatar and Buddy UnitID (Base/Robot), refactor template id
TemplateID::new now returns Result<T, TemplateNotFoundError>
Cleanup code in some of new handlers
2024-08-06 21:42:03 +03:00

11 lines
237 B
Rust

use serde::Deserialize;
template_id!(UnlockConfig id);
#[derive(Deserialize, Debug)]
#[serde(rename_all = "PascalCase")]
pub struct UnlockConfigTemplate {
#[serde(rename = "ID")]
pub id: UnlockConfigID,
pub name: String,
}