// /** // * 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; using Newtonsoft.Json; using Newtonsoft.Json.Converters; namespace ln.skyscanner.entities { [JsonConverter(typeof(StringEnumConverter))] public enum CheckSeverity { OLD = 0, PLANNED = 10, SETUP = 20, TESTING = 30, PRODUCTION = 40, SYSTEMCRITICAL = 50 } }