This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity >=0.4.25 <0.6.0; | |
contract GeoConferenceRefund | |
{ | |
//Set of States | |
enum StateType { Created, InTransit, Completed, OutOfCompliance} | |
enum SensorType { None, latitude, longitude } | |
//List of properties | |
StateType public State; |