7 lines
93 B
Ruby
7 lines
93 B
Ruby
class Member
|
|
attr_reader :email
|
|
def initialize(hash)
|
|
@email = hash[:email]
|
|
end
|
|
end
|