Added contact module

This commit is contained in:
2026-05-28 21:39:48 -04:00
parent 078f270e50
commit eda3112463
2 changed files with 17 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct Contact {
pub id: uuid::Uuid,
// empty?
pub firstname: String,
// empty?
pub lastname: String,
// empty?
pub nickname: String,
pub phone_number: String,
// empty
pub user_id: uuid::Uuid,
}
+1
View File
@@ -1 +1,2 @@
pub mod config;
pub mod contact;