add struct

This commit is contained in:
P0lunin 2019-09-03 21:09:34 +03:00
parent b4cfb893e9
commit ff2285890f

View file

@ -0,0 +1,7 @@
struct Contact {
phone_number: String,
first_name: String,
last_name: Option<String>,
user_id: Option<i64>,
vcard: Option<String>,
}