mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-24 03:00:12 +01:00
5 lines
77 B
Ruby
5 lines
77 B
Ruby
class Customer < Struct.new(:name, :id)
|
|
def to_param
|
|
id.to_s
|
|
end
|
|
end
|