This commit is contained in:
Peter Rossa
2023-05-10 12:23:25 +02:00
commit af29efa0f3
131 changed files with 16889 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
import { Meter } from './Meter';
export class MeterData {
id?: number;
type: 'ENERGY' | 'WATER';
date: Date;
amount: number;
meter: Meter;
constructor(
type: 'ENERGY' | 'WATER',
date: Date,
amount: number,
meter: Meter,
id?: number
) {
this.id = id;
this.type = type;
this.date = date;
this.amount = amount;
this.meter = meter;
}
}