Exemple #1
0
 public static FeedCommand<SubscribeNewsArgs> SubscribeNews(NewsSource newsSource, bool delay = false)
 {
     return new FeedCommand<SubscribeNewsArgs>
     {
         cmd = SubscribeCommandParameter,
         args = new SubscribeNewsArgs(newsSource, delay)
     };
 }
 public SubscribeNewsArgs(NewsSource newsSource, bool delay=false)
 {
     s = newsSource.Sourceid;
     delay = delay;
 }