41d38b39654c6bcf118591af3fbadcd6c9be42c9
[e-mobility-charging-stations-simulator.git] / src / types / orm / entities / PerformanceRecord.ts
1 import { Entity, PrimaryKey, Property } from '@mikro-orm/core';
2
3 import { PerformanceData } from './PerformanceData';
4
5 @Entity()
6 export class PerformanceRecord {
7 // @PrimaryKey()
8 // pk!: number;
9
10 // @Property()
11 // id: string;
12
13 // @Property()
14 // URI: string;
15
16 // @Property()
17 // createdAt: Date;
18
19 // @Property({ nullable: true })
20 // updatedAt?: Date;
21
22 // @Property({ nullable: true })
23 // performanceData?: PerformanceData[];
24 }
25