13 lines
209 B
TypeScript
13 lines
209 B
TypeScript
|
export interface CreateSalutationCommand {
|
||
|
salutation: string;
|
||
|
}
|
||
|
|
||
|
export interface UpdateSalutationCommand {
|
||
|
id: number;
|
||
|
salutation: string;
|
||
|
}
|
||
|
|
||
|
export interface DeleteSalutationCommand {
|
||
|
id: number;
|
||
|
}
|