Apply prettier formating
[e-mobility-charging-stations-simulator.git] / src / types / orm / entities / PerformanceRecord.ts
index c0d2ab800d3ab63b5d09fc851f397a506cd0b714..81ee84b7f6002aa0b4de5e90e237a4acbf8d2dac 100644 (file)
@@ -6,20 +6,14 @@ import { PerformanceData } from './PerformanceData';
 export class PerformanceRecord {
   // @PrimaryKey()
   // pk!: number;
-
   // @Property()
   // id!: string;
-
   // @Property()
   // URI!: string;
-
   // @Property()
   // createdAt!: Date;
-
   // @Property()
   // updatedAt?: Date;
-
   // @OneToMany('PerformanceData', 'performanceRecord')
   // performanceData?= new Collection<PerformanceData>(this);
 }
-