/*
 * 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 CAD incident event. CAD events have a string description of
 * what is occurring at that time, and may or may not have sub-events.
 *
 * @author Bryan McGuffin
 */
public class CADEvent extends ScriptEvent
{

    public CADEvent()
    {
        super(ScriptEventType.CAD_EVENT);
    }

    public boolean hasSubEvents = false;

    public String detail = "";

}
