1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-11-06 09:19:38 +02:00
Files
Sonarr/NzbDrone.Core/Entities/Notification/NotificationStatus.cs

9 lines
162 B
C#

namespace NzbDrone.Core.Entities.Notification
{
public enum NotificationStatus
{
InProgress = 0,
Completed = 1,
Failed = 2
}
}