SyncData.java 327 B

12345678910111213
  1. package de.tudarmstadt.informatik.hostage.logging;
  2. import java.io.Serializable;
  3. import java.util.List;
  4. public class SyncData implements Serializable {
  5. private static final long serialVersionUID = 1L;
  6. /**
  7. * Contains a list of records with should be sent to synchronize
  8. */
  9. public List<Record> records;
  10. }