# Copyright (C) 2015-2016 all contributors # License: GPL-3.0+ # frozen_string_literal: true require_relative '../dtas' class DTAS::Track # :nodoc: attr_reader :track_id attr_reader :to_path def initialize(track_id, path) @track_id = track_id @to_path = path end end