From ff2285890fee8b28138f30c5bf775cad8f587f99 Mon Sep 17 00:00:00 2001 From: P0lunin Date: Tue, 3 Sep 2019 21:09:34 +0300 Subject: [PATCH] add struct --- src/core/types/contact.rs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/core/types/contact.rs diff --git a/src/core/types/contact.rs b/src/core/types/contact.rs new file mode 100644 index 00000000..f6896481 --- /dev/null +++ b/src/core/types/contact.rs @@ -0,0 +1,7 @@ +struct Contact { + phone_number: String, + first_name: String, + last_name: Option, + user_id: Option, + vcard: Option, +} \ No newline at end of file