Skip to content

Instantly share code, notes, and snippets.

@kirshiyin89
Created August 24, 2020 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kirshiyin89/4c75507a18924eb63e2b850ef1c5163f to your computer and use it in GitHub Desktop.
Save kirshiyin89/4c75507a18924eb63e2b850ef1c5163f to your computer and use it in GitHub Desktop.
The Service Info DTO.
public class ServiceInfo {
public final String name;
public final boolean running;
public ServiceInfo(String name, boolean running) {
this.name = name;
this.running = running;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment