src/app/models/Book.ts
Properties |
| abstract |
abstract:
|
Type : string
|
| author |
author:
|
Type : string
|
| biblioitemnumber |
biblioitemnumber:
|
Type : string
|
| biblionumber |
biblionumber:
|
Type : string
|
| copyrightdate |
copyrightdate:
|
Type : string
|
| isbn |
isbn:
|
Type : string
|
| title |
title:
|
Type : string
|
| url |
url:
|
Type : string
|
export interface Book {
biblionumber: string;
title: string;
author: string;
abstract: string;
copyrightdate: string;
biblioitemnumber: string;
isbn: string;
url: string;
}