namespace Swan {
///
/// Enumeration of Operating Systems.
///
public enum OperatingSystem {
///
/// Unknown OS
///
Unknown,
///
/// Windows
///
Windows,
///
/// UNIX/Linux
///
Unix,
///
/// macOS (OSX)
///
Osx,
}
///
/// 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,
}
///
/// Enumerates the JSON serializer cases to use: None (keeps the same case), PascalCase, or camelCase.
///
public enum JsonSerializerCase {
///
/// The none
///
None,
///
/// The pascal case (eg. PascalCase)
///
PascalCase,
///
/// The camel case (eg. camelCase)
///
CamelCase,
}
}