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

12 lines
126 B
TypeScript

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