({ author, publisher, title }: { author: Author; publisher: Publisher; title: string })
| 54 | publisher?: Ref<Publisher>; |
| 55 | |
| 56 | constructor({ author, publisher, title }: { author: Author; publisher: Publisher; title: string }) { |
| 57 | this.author = ref(author); |
| 58 | this.publisher = ref(publisher); |
| 59 | this.title = title; |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | @Entity() |