mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
10 lines
243 B
C#
10 lines
243 B
C#
namespace NzbDrone.Core.Validation
|
|
{
|
|
public class NzbDroneValidationState
|
|
{
|
|
public static NzbDroneValidationState Warning = new NzbDroneValidationState { IsWarning = true };
|
|
|
|
public bool IsWarning { get; set; }
|
|
}
|
|
}
|