7 lines
93 B
Ruby
Raw Permalink Normal View History

2022-12-22 21:27:28 +02:00
class Member
attr_reader :email
def initialize(hash)
@email = hash[:email]
end
end