mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -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
|
|
}
|
|
}
|