Refine TS and linter configuration
[e-mobility-charging-stations-simulator.git] / src / types / orm / entities / PerformanceRecord.ts
1 import { Collection, Entity, OneToMany, PrimaryKey, Property } from '@mikro-orm/core';
2
3 import type { PerformanceData } from './PerformanceData';
4
5 @Entity()
6 export class PerformanceRecord {
7 // @PrimaryKey()
8 // pk!: number;
9 // @Property()
10 // id!: string;
11 // @Property()
12 // URI!: string;
13 // @Property()
14 // createdAt!: Date;
15 // @Property()
16 // updatedAt?: Date;
17 // @OneToMany('PerformanceData', 'performanceRecord')
18 // performanceData? = new Collection<PerformanceData>(this);
19 }