latest work #20

Merged
philipp merged 233 commits from dev into main 2020-12-09 18:49:33 +00:00
Showing only changes of commit abb7f7f894 - Show all commits

19
src/models/IScan.ts Normal file
View File

@ -0,0 +1,19 @@
/**
* Defines the scan interface.
*/
export interface IScan {
/**
* Autogenerated unique id (primary key).
*/
id: number;
/**
* The associated runner.
*/
runner: Runner;
/**
* The scan's distance in meters.
*/
distance: number;
}