cohort.model.ts 201B

12345678910
  1. export interface ICohort {
  2. id?: number;
  3. cohortId?: number;
  4. gradDate?: string;
  5. }
  6. export class Cohort implements ICohort {
  7. constructor(public id?: number, public gradDate?: string) {}
  8. }