11 lines
171 B
TypeScript
11 lines
171 B
TypeScript
|
|
export class book {
|
||
|
|
public id: number;
|
||
|
|
public booktype: string;
|
||
|
|
public bookname: string;
|
||
|
|
public price: number;
|
||
|
|
public writer: string;
|
||
|
|
public code:number;
|
||
|
|
|
||
|
|
|
||
|
|
}
|