Files
customer-service/lib/customer_service/commands.ex
Haim Kortovich 072dbf6e66 WIP
2026-03-05 11:35:01 -05:00

12 lines
170 B
Elixir

defmodule CustomerService.Commands.CreateCustomer do
defstruct [
:id,
:first_name,
:last_name,
:birth_date,
:gender,
:email,
:phone
]
end