Пример #1
0
 public RadioStation(string Name, string URL, string Genre, int BitRate, StationStreamType StreamType)
 {
     this.Name       = Name;
     this.URL        = URL;
     this.Genre      = Genre;
     this.BitRate    = BitRate;
     this.StreamType = StreamType;
 }
Пример #2
0
 public RadioStation(string URL, string Name)
 {
     this.URL        = URL;
     this.Name       = Name;
     this.Genre      = String.Empty;
     this.BitRate    = 0;
     this.StreamType = StationStreamType.None;
 }