Skip to content

Instantly share code, notes, and snippets.

@kirshiyin89
Created August 24, 2020 17:51
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/e15d8998593c058ac85e92cdc2c1122e to your computer and use it in GitHub Desktop.
Save kirshiyin89/e15d8998593c058ac85e92cdc2c1122e to your computer and use it in GitHub Desktop.
ServerInfo DTO
public class ServerInfo {
public final String name;
public final List<ServiceInfo> services;
public ServerInfo(String name, List<ServiceInfo> services) {
this.name = name;
this.services = services;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment