/**
 * Can be used for state of the user connection, service connection etc
 */
export enum ConnectionState {
  Connected = 0,
  Disconnected = 1,
}
