cic-staff-client/src/app/_models/staff.ts

10 lines
124 B
TypeScript

interface Staff {
comment: string;
email: string;
name: string;
tag: number;
userid: string;
}
export { Staff };