14 lines
252 B
TypeScript
14 lines
252 B
TypeScript
export interface CreateEducationCommand {
|
|
education: string;
|
|
description?: string;
|
|
}
|
|
|
|
export interface UpdateEducationCommand {
|
|
id: number;
|
|
education: string;
|
|
description?: string;
|
|
}
|
|
|
|
export interface DeleteEducationCommand {
|
|
id: number;
|
|
}
|