8 lines
213 B
TypeScript
8 lines
213 B
TypeScript
|
import { Item } from "./item";
|
||
|
|
||
|
export class Share extends Item {
|
||
|
constructor(id: number, insuranceValue: number, public company: string, public faceValue: number) {
|
||
|
super(id, insuranceValue);
|
||
|
}
|
||
|
}
|