mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-07 15:20:58 +02:00
10 lines
146 B
C#
10 lines
146 B
C#
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public enum DownloadProtocol
|
|
{
|
|
Unknown = 0,
|
|
Usenet = 1,
|
|
Torrent = 2
|
|
}
|
|
}
|