export class Boat { id = '' name = '' capacity = '' cost = '' constructor(id: string, name: string, capacity: string, cost: string) { this.id = id; this.name = name; this.capacity = capacity; this.cost = cost; } }