Initial commit
This commit is contained in:
12
app/services/audio_data.rb
Normal file
12
app/services/audio_data.rb
Normal file
@@ -0,0 +1,12 @@
|
||||
class AudioData
|
||||
attr_reader :filename, :requested_filename, :composer, :publisher, :catalog, :title
|
||||
|
||||
def initialize(filename, requested_filename, composer, publisher, catalog, title)
|
||||
@filename = filename
|
||||
@requested_filename = requested_filename
|
||||
@composer = composer
|
||||
@publisher = publisher
|
||||
@catalog = catalog
|
||||
@title = title
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user