RailsEventStore/cqrs-es-sample-with-res

View on GitHub
ecommerce/authentication/lib/authentication/events/password_hash_set.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Authentication
  class PasswordHashSet < Infra::Event
    attribute :account_id, Infra::Types::UUID
    attribute :password_hash, Infra::Types::String
  end
end