Beispiel #1
0
 public Rss20(string title, string link, string description)
 {
     Channel = new Rss20Channel()
     {
         Link        = link,
         Title       = title,
         Description = description,
         Items       = new List <Rss20Item>()
     };
 }
Beispiel #2
0
 public Rss20()
 {
     Channel = new Rss20Channel();
 }