15 lines
252 B
TypeScript
15 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;
|
||
|
}
|