typescript_safe/share.ts

8 lines
213 B
TypeScript
Raw Normal View History

2024-11-06 09:57:58 +00:00
import { Item } from "./item";
export class Share extends Item {
constructor(id: number, insuranceValue: number, public company: string, public faceValue: number) {
super(id, insuranceValue);
}
}