about summary refs log tree commit homepage
path: root/lib/dtas/track.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dtas/track.rb')
-rw-r--r--lib/dtas/track.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/dtas/track.rb b/lib/dtas/track.rb
new file mode 100644
index 0000000..215ee52
--- /dev/null
+++ b/lib/dtas/track.rb
@@ -0,0 +1,13 @@
+# Copyright (C) 2015 all contributors <dtas-all@nongnu.org>
+# License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
+require_relative '../dtas'
+
+class DTAS::Track
+  attr_reader :track_id
+  attr_reader :to_path
+
+  def initialize(track_id, path)
+    @track_id = track_id
+    @to_path = path
+  end
+end