1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-07 15:20:58 +02:00
Sonarr/src/NzbDrone.Core/Indexers/DownloadProtocol.cs
2014-12-06 21:55:17 -08:00

10 lines
146 B
C#

namespace NzbDrone.Core.Indexers
{
public enum DownloadProtocol
{
Unknown = 0,
Usenet = 1,
Torrent = 2
}
}