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