update newsletter syncing commands and controller

This commit is contained in:
Julian Krauser 2024-12-26 12:34:31 +01:00
parent 4180da5749
commit 6dcd650cad
9 changed files with 16 additions and 49 deletions

View file

@ -8,5 +8,6 @@ export interface NewsletterViewModel {
newsletterText: string;
newsletterSignatur: string;
isSent: boolean;
recipientsByQueryId?: number;
recipientsByQuery?: QueryStoreViewModel;
}

View file

@ -3,6 +3,5 @@ import { MemberViewModel } from "./member.models";
export interface NewsletterRecipientsViewModel {
newsletterId: number;
memberId: number;
addedManually: boolean;
member: MemberViewModel;
}