17 lines
315 B
TypeScript
17 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;
|
||
|
}
|