Added code #4

Merged
phoenix merged 7 commits from layer into v0.3.0-migrate 2026-05-28 21:42:42 -04:00
2 changed files with 17 additions and 0 deletions
Showing only changes of commit eda3112463 - Show all commits
+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;