typescript_safe/item.ts

8 lines
119 B
TypeScript
Raw Normal View History

2024-11-06 09:57:58 +00:00
export class Item {
constructor(
public id: number,
public insuranceValue: number,
) {
}
}