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