#[command]
Marks a struct as a Command (CQRS write operation)
Commands represent write operations that change state and produce events.
#[command] struct CreateUserCommand { email: String, name: String, }