src/app/_models/staff.ts
Properties |
comment |
comment:
|
Type : string
|
email:
|
Type : string
|
name |
name:
|
Type : string
|
tag |
tag:
|
Type : number
|
userid |
userid:
|
Type : string
|
interface Staff {
comment: string;
email: string;
name: string;
tag: number;
userid: string;
}
export {
Staff
};