Skip to content

Instantly share code, notes, and snippets.

@TGITS
Created January 22, 2022 12:29
Show Gist options
  • Save TGITS/357df4bb7fbd8743b01cb5f518d8523c to your computer and use it in GitHub Desktop.
Save TGITS/357df4bb7fbd8743b01cb5f518d8523c to your computer and use it in GitHub Desktop.
A record to represent some characteristics of a noble House of Westeros
/**
* A record to represent some characteristics of a noble House of Westeros
* */
public record House(String name, String seat, String sigil, String familyWords) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment