using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; namespace PepperDash.Core.GenericRESTfulCommunications { /// /// Constants /// public class GenericRESTfulConstants { /// /// Generic boolean change /// public const ushort BoolValueChange = 1; /// /// Generic Ushort change /// public const ushort UshrtValueChange = 101; /// /// Response Code Ushort change /// public const ushort ResponseCodeChange = 102; /// /// Generic String chagne /// public const ushort StringValueChange = 201; /// /// Response string change /// public const ushort ResponseStringChange = 202; /// /// Error string change /// public const ushort ErrorStringChange = 203; } }