mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-01 16:06:24 +02:00
16 lines
242 B
C#
16 lines
242 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public class RssSyncProvider
|
|
{
|
|
public virtual void Begin()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|