8 lines
119 B
TypeScript
8 lines
119 B
TypeScript
export class Item {
|
|
constructor(
|
|
public id: number,
|
|
public insuranceValue: number,
|
|
) {
|
|
}
|
|
}
|