// Import types
import CheckInUIProps from './CheckInUIProps';
import MMDDYY from './MMDDYY';

/**
 * Type describing the base info for an Occurrence (enough to query DB).
 * @author Benedikt Arnarsson
 */
type OccurrenceBasicInfo = CheckInUIProps & MMDDYY;

export default OccurrenceBasicInfo;
