﻿RegisterNamespace('NPR.Stations.StationUri');

NPR.Stations.StationUri = function(title, type, uri)
{
    // Public Properties
    this.Title = title || '';
    this.Type = type || 0;
    this.Uri = uri || '';
}