typescript_safe/item.ts
2024-11-06 10:57:58 +01:00

8 lines
119 B
TypeScript

export class Item {
constructor(
public id: number,
public insuranceValue: number,
) {
}
}