Browse Source

feat: Add logs interface

Co-authored-by: Iro Athina Valagouti <iro_valagouti@yahoo.gr>
master
Konstantinos Kamaropoulos 5 years ago
parent
commit
a7fc6c98e7
  1. 10
      src/logs/logs.interface.ts

10
src/logs/logs.interface.ts

@ -0,0 +1,10 @@
import { Document } from 'mongoose';
export interface ILogs {
_id?: number;
drone_id: number;
gprmc: String;
sensorReadings: Object;
createdAt?: Date;
updatedAt?: Date;
}
Loading…
Cancel
Save