ln.skyscanner/entities/CheckSeverity.cs

23 lines
491 B
C#

// /**
// * File: ProductionState.cs
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using System;
namespace ln.skyscanner.entities
{
public enum CheckSeverity
{
OLD = 0,
PLANNED = 10,
SETUP = 20,
TESTING = 30,
PRODUCTION = 40,
SYSTEMCRITICAL = 50
}
}