1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-09 12:32:31 +01:00
Radarr/NzbDrone.Core/Providers/IRssSyncProvider.cs
kay.one 2d9285eee2 fixed some DI issues.
fixed episode list grid width
2011-04-04 00:51:58 -07:00

21 lines
319 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.Providers
{
public interface IRssSyncProvider
{
void Begin();
}
class RssSyncProvider : IRssSyncProvider
{
public void Begin()
{
}
}
}