You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvfront-react/services/type.ts

20 lines
310 B

export interface Candidate {
name: string,
image?: string,
description?: string
}
export interface CandidateItem extends Candidate {
active: boolean;
}
export interface Grade {
name: string,
value: number,
description?: string
}
export interface GradeItem extends Grade {
active: boolean;
}