namespace Unosquare.Swan {
///
/// Enumeration of Operating Systems.
///
public enum OperatingSystem {
///
/// Unknown OS
///
Unknown,
///
/// Windows
///
Windows,
///
/// UNIX/Linux
///
Unix,
///
/// macOS (OSX)
///
Osx,
}
///
/// Enumerates the different Application Worker States.
///
public enum AppWorkerState {
///
/// The stopped
///
Stopped,
///
/// The running
///
Running,
}
///
/// Defines Endianness, big or little.
///
public enum Endianness {
///
/// In big endian, you store the most significant byte in the smallest address.
///
Big,
///
/// In little endian, you store the least significant byte in the smallest address.
///
Little,
}
}