import type { CheckpointType } from './CheckpointType';

export interface Checkpoint {
  /** Autogenerated Id */
  id: string;
  /** This is the received from Flag Module */
  address: number;
  name?: string;
  type: CheckpointType;
  progress: number;
}
