package info.oais.interfaces.infomodel.poss1Provenance;
import java.time.ZonedDateTime;

import  info.oais.interfaces.infomodel.*;


/**
 * The time of the Step, which may include a duration, time system etc.
 * The time system may be for example Earth timezone. 
 * @author David
 * @version 1.0
 * @since 06-Sep-2021 15:59:47
 */
public interface TimeStamp extends InformationObject {

	/**
	 * Return the DateTime.
	 * @return the DateTime.
	 */
	public ZonedDateTime getDateTime();
	
	/**
	 * Set the DateTime.
	 * @param dt The DateTime.
	 */
	public void setDateTime(ZonedDateTime dt);

}