2011-01-29 06:10:22 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
|
|
|
|
public interface IRssSyncProvider
|
|
|
|
|
{
|
|
|
|
|
void Begin();
|
|
|
|
|
}
|
2011-04-04 07:51:58 +00:00
|
|
|
|
|
2011-04-05 02:59:33 +00:00
|
|
|
|
public class RssSyncProvider : IRssSyncProvider
|
2011-04-04 07:51:58 +00:00
|
|
|
|
{
|
|
|
|
|
public void Begin()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-01-29 06:10:22 +00:00
|
|
|
|
}
|