2023-10-23 06:58:18 +00:00

12 lines
109 B
Ruby

class Client
attr_reader :id
def initialize(id:)
@id = id
end
def to_param
id
end
end