mirror of
https://github.com/TracksApp/tracks.git
synced 2026-02-27 09:34:08 +01:00
6 lines
77 B
Ruby
6 lines
77 B
Ruby
|
|
class Customer < Struct.new(:name, :id)
|
||
|
|
def to_param
|
||
|
|
id.to_s
|
||
|
|
end
|
||
|
|
end
|