Preparando terreno

This commit is contained in:
Ruben Garcalia
2026-05-18 20:24:22 +02:00
parent 9ce7217d6b
commit 6e7937b049
21 changed files with 482 additions and 13 deletions

View File

@@ -0,0 +1,13 @@
use serde::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Target {
#[serde(rename = "Name")]
pub name: String,
#[serde(rename = "Shortcut")]
pub shortcut: i32,
#[serde(rename = "TeamNum")]
pub team_num: i32,
}