function Media(data) {
    var arrayData = data.split('|');
    
    this.imagePath = arrayData[0];
    this.imageDesc = arrayData[1];
}

Media.prototype.setImagePath = function(value) {  
    this.imagePath = value;
}

Media.prototype.getImagePath = function() {  
    return this.imagePath;
}

Media.prototype.getImageDesc = function() {  
    return this.imageDesc;
}
