mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 18:42:42 +01:00
9 lines
167 B
C#
9 lines
167 B
C#
|
namespace NzbDrone.Core.Model.Notification
|
||
|
{
|
||
|
public enum ProgressNotificationStatus
|
||
|
{
|
||
|
InProgress = 0,
|
||
|
Completed = 1,
|
||
|
Failed = 2
|
||
|
}
|
||
|
}
|