mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
12 lines
181 B
C#
12 lines
181 B
C#
namespace NzbDrone.Core.Update
|
|
{
|
|
public enum UpdateMechanism
|
|
{
|
|
BuiltIn = 0,
|
|
Script = 1,
|
|
External = 10,
|
|
Apt = 11,
|
|
Docker = 12
|
|
}
|
|
}
|