function rwVideo(title,href,time,img_src) {
  this.title = title;
  this.href = href;
  this.time = time;
  this.img_src = img_src;
}

rwVideo.prototype.getTitle = function() {
  return this.title;
}

rwVideo.prototype.getTime = function() {
  return this.time;
}

rwVideo.prototype.getImgSrc = function() {
  return this.img_src;
}

rwVideo.prototype.getHref = function() {
  return this.href;
}
