13 lines
221 B
Crystal
13 lines
221 B
Crystal
require "json"
|
|
|
|
module Telepathy
|
|
class Contact
|
|
JSON.mapping(
|
|
phone_number: String,
|
|
first_name: String,
|
|
last_name: String?,
|
|
user_id: Int64?
|
|
)
|
|
end
|
|
end
|