ServicesListItem.java 311 B

12345678910111213141516
  1. package de.tudarmstadt.informatik.hostage.ui2.model;
  2. /**
  3. * Created by Daniel Lazar on 06.02.14.
  4. */
  5. public class ServicesListItem {
  6. public String protocol;
  7. public int attacks;
  8. public boolean activated;
  9. public ServicesListItem(String protocol){
  10. this.protocol = protocol;
  11. this.activated = false;
  12. }
  13. }