mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-22 22:34:53 -04:00
10 lines
146 B
C#
10 lines
146 B
C#
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public enum DownloadProtocol
|
|
{
|
|
Unknown = 0,
|
|
Usenet = 1,
|
|
Torrent = 2
|
|
}
|
|
}
|