16 lines
315 B
TypeScript
16 lines
315 B
TypeScript
export interface EducationViewModel {
|
|
id: number;
|
|
education: string;
|
|
description: string | null;
|
|
}
|
|
|
|
export interface CreateEducationViewModel {
|
|
education: string;
|
|
description: string | null;
|
|
}
|
|
|
|
export interface UpdateEducationViewModel {
|
|
id: number;
|
|
education: string;
|
|
description: string | null;
|
|
}
|