employer.model.ts 299B

123456789101112
  1. export interface IEmployer {
  2. id?: number;
  3. employerId?: number;
  4. companyName?: string;
  5. city?: string;
  6. state?: string;
  7. }
  8. export class Employer implements IEmployer {
  9. constructor(public id?: number, public companyName?: string, public city?: string, public state?: string) {}
  10. }