You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-11-06 09:19:38 +02:00
9 lines
162 B
C#
9 lines
162 B
C#
namespace NzbDrone.Core.Entities.Notification
|
|
{
|
|
public enum NotificationStatus
|
|
{
|
|
InProgress = 0,
|
|
Completed = 1,
|
|
Failed = 2
|
|
}
|
|
} |