You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
415 B
24 lines
415 B
package seng302.Data;
|
|
|
|
import seng302.Model.Boat;
|
|
import seng302.Model.Marker;
|
|
|
|
import java.time.OffsetDateTime;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Created by esa46 on 21/04/17.
|
|
*/
|
|
public class RaceData {
|
|
|
|
private String raceID;
|
|
private String raceType;
|
|
private OffsetDateTime creationTimeDate;
|
|
private OffsetDateTime raceStartTime;
|
|
private List<Boat> participants;
|
|
// private List<Marker>
|
|
|
|
|
|
|
|
}
|