Party contains the player information. - [ ] hold a list of players - [ ] JSON serializable / deserializable - [ ] list of all characters in the party - [ ] use getters and setters ```js class Party{ name: 'string' characters: [ { name: 'string' } ] get players(); } ```
Party contains the player information.