Newsletter Config

This commit is contained in:
Julian Krauser 2024-12-26 12:04:00 +01:00
parent cb03dd0b47
commit 844bd9a8d5
8 changed files with 221 additions and 8 deletions

View file

@ -0,0 +1,13 @@
import type { NewsletterConfigType } from "../../enums/newsletterConfigType";
import type { CommunicationTypeViewModel } from "./communicationType.models";
export interface NewsletterConfigViewModel {
comTypeId: number;
config: NewsletterConfigType;
comType: CommunicationTypeViewModel;
}
export interface SetNewsletterConfigViewModel {
comTypeId: number;
config: NewsletterConfigType;
}