12 lines
170 B
Elixir
12 lines
170 B
Elixir
defmodule CustomerService.Commands.CreateCustomer do
|
|
defstruct [
|
|
:id,
|
|
:first_name,
|
|
:last_name,
|
|
:birth_date,
|
|
:gender,
|
|
:email,
|
|
:phone
|
|
]
|
|
end
|