예제 #1
0
파일: Rss20.cs 프로젝트: onurh/AF452
 public Rss20(string title, string link, string description)
 {
     Channel = new Rss20Channel()
     {
         Link        = link,
         Title       = title,
         Description = description,
         Items       = new List <Rss20Item>()
     };
 }
예제 #2
0
파일: Rss20.cs 프로젝트: onurh/AF452
 public Rss20()
 {
     Channel = new Rss20Channel();
 }