2024-09-26 11:16:43 +00:00
|
|
|
import { Salutation } from "../enums/salutation";
|
|
|
|
|
|
|
|
export interface CreateMemberCommand {
|
|
|
|
salutation: Salutation;
|
|
|
|
firstname: string;
|
|
|
|
lastname: string;
|
|
|
|
nameaffix: string;
|
|
|
|
birthdate: Date;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UpdateMemberCommand {
|
|
|
|
id: number;
|
|
|
|
salutation: Salutation;
|
|
|
|
firstname: string;
|
|
|
|
lastname: string;
|
|
|
|
nameaffix: string;
|
|
|
|
birthdate: Date;
|
|
|
|
}
|
|
|
|
|
2024-09-27 12:55:34 +00:00
|
|
|
export interface UpdateMemberNewsletterCommand {
|
|
|
|
id: number;
|
|
|
|
communicationId: number;
|
|
|
|
}
|
|
|
|
|
2024-09-26 11:16:43 +00:00
|
|
|
export interface DeleteMemberCommand {
|
|
|
|
id: number;
|
|
|
|
}
|