Created
September 20, 2022 16:32
-
-
Save newerton/586deb510fa6c9386052d0c7df44f352 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Book } from '../entities'; | |
export class CreateBookResponseDto { | |
success: boolean; | |
createdBook: Book; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment