/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package scriptbuilder.structures.events; import scriptbuilder.structures.ScriptEvent; /** * Data model for a Tow event. A tow truck has a beat and a company, and two * phone numbers: one public, and one for confirmation. * * @author Bryan McGuffin */ public class TowEvent extends ScriptEvent { public TowEvent() { super(ScriptEventType.TOW_EVENT); } public String towBeat = ""; public String towCompany = ""; public String towConfNum = ""; public String towPubNum = ""; }