using System; using Newtonsoft.Json; using Newtonsoft.Json.Converters; namespace ln.skyscanner.entities { [JsonConverter(typeof(StringEnumConverter))] public enum DeviceType { UNKNOWN, ROUTER, PTP, PTMP, UPS, SERVER } }