From ec1bc78fdfcb141dbe9f117a1e79a124275b0a72 Mon Sep 17 00:00:00 2001 From: YK Date: Fri, 12 Sep 2025 08:08:03 +0300 Subject: [PATCH] update entities defs --- src/entities/mock.rs | 7 ++++--- src/entities/mod.rs | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/entities/mock.rs b/src/entities/mock.rs index 9ef70a3..6b8d32f 100644 --- a/src/entities/mock.rs +++ b/src/entities/mock.rs @@ -9,9 +9,10 @@ impl Dashboard { session: 12, date: NaiveDate::from_ymd_opt(1488, 3, 19).unwrap(), player: PlayerData { - first_name: "Ней".to_owned(), - last_name: "Визард".to_owned(), - alias: "Гигга".to_string(), + first_name: "Абоба".to_owned(), + last_name: "Амогус".to_owned(), + alias: "Такелажник".to_string(), + class: "Чувствительный молодой человек".to_string(), image: "https://i.pinimg.com/736x/25/58/32/2558329d333fda61615da6ce50dcddda.jpg".to_owned(), level: 8, xp: 3231, diff --git a/src/entities/mod.rs b/src/entities/mod.rs index 7f6566e..fd09b48 100644 --- a/src/entities/mod.rs +++ b/src/entities/mod.rs @@ -55,6 +55,7 @@ pub struct PlayerData { pub first_name: String, pub last_name: String, pub alias: String, + pub class: String, pub image: String, pub level: u8, pub xp: u32,