#---------------------------------------------------------------
# ____                   _ _         ____  _
#|  _ \ ___  _   _  __ _| | |_ _   _/ ___|| |__   __ _ _ __ ___
#| |_) / _ \| | | |/ _` | | __| | | \___ \| '_ \ / _` | '__/ _ \
#|  _ < (_) | |_| | (_| | | |_| |_| |___) | | | | (_| | | |  __/
#|_| \_\___/ \__, |\__,_|_|\__|\__, |____/|_| |_|\__,_|_|  \___|
#            |___/             |___/
#
# Copyright (C) 2013 RoyaltyShare, Inc.   All Rights Reserved
#---------------------------------------------------------------

package RPS::Import::eClassical::v2;

use strict;

use lib '/app/tools/common/lib';
use Common::Country;

use lib '/app/tools/rps/lib';
use base 'RPS::Import::eClassical::v1';

sub _fieldMap {
    {
        labelName        => 'E',
        dateBegin        => 'C',
        productType      => 'K',
        formatType       => 'M',
        artistName       => 'G',
        upc              => 'I',
        isrc             => 'J',
        trackName        => 'F',
        albumName        => 'F',
        price            => 'T',
        units            => 'N',
        currencyCode     => 'R',
        countryCode      => 'B',
    }
}

###
1;# Play nicely.
###
