authd/src/responses/contact.cr

11 lines
231 B
Crystal

class AuthD::Response
IPC::CBOR.message Contacts, 12 do
property user : Int32
property email : String? = nil
property phone : String? = nil
def initialize(@user, @email, @phone)
end
end
AuthD.responses << Contacts
end