Exemplo n.º 1
0
Arquivo: Rss20.cs Projeto: onurh/AF452
 public Rss20(string title, string link, string description)
 {
     Channel = new Rss20Channel()
     {
         Link        = link,
         Title       = title,
         Description = description,
         Items       = new List <Rss20Item>()
     };
 }
Exemplo n.º 2
0
Arquivo: Rss20.cs Projeto: onurh/AF452
 public Rss20()
 {
     Channel = new Rss20Channel();
 }