• Sign in

李攀 / fangTang · Files

Favicon

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Network
  • fangTang
  • ..
  • entity
  • Status.java
  • show status of server and lights
      9670e104
    李攀 authored
    2017-08-01 16:31:36 +0800  
    Browse Directory »
Status.java 298 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.xgimi.gimicinema.entity;

/**
 * Created by wugian on 2017/7/27.
 */

public class Status {

    public enum ConnectServerStatus {
        SERVER_IDLE, SERVER_CONNECTING, SERVER_CONNECTED,
    }

    public enum LightStatus {
        LIGHT_IDLE, LIGHT_CONNECTED
    }
}