🦀/100 Projects/Notes/Source

src/models/contact.rs

View on GitHub
#[derive(Debug)]
pub struct Contact {
    pub id: usize,
    pub name: String,
    pub phone: String,
    pub email: String,
}

← Back to folder