1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-03 21:45:05 +00:00
Lidarr/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

20 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()
{
}
}
}