Skip to content

Instantly share code, notes, and snippets.

@newerton
Created September 20, 2022 16:01
Show Gist options
  • Save newerton/5aafef55075792acd3ddaac3c761fcbc to your computer and use it in GitHub Desktop.
Save newerton/5aafef55075792acd3ddaac3c761fcbc to your computer and use it in GitHub Desktop.
export class Author {
firstName: string;
lastName: string;
}
export class Genre {
name: string;
}
export class Book {
title: string;
author: Author;
genre: Genre;
publishDate: Date;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment