<?php
namespace ConcreteCoreGatheringDataSourceConfiguration;
use Loader;
class RssFeedConfiguration extends Configuration {
public function setRssFeedURL($url) {
$this->url = $url;
}
public function getRssFeedURL() {
return $this->url;
}
}