2025-04-19 09:42:25 +02:00
|
|
|
import type { NewsletterConfigEnum } from "@/enums/newsletterConfigEnum";
|
2024-12-26 12:04:00 +01:00
|
|
|
import type { CommunicationTypeViewModel } from "./communicationType.models";
|
|
|
|
|
|
|
|
export interface NewsletterConfigViewModel {
|
|
|
|
comTypeId: number;
|
2025-04-19 09:42:25 +02:00
|
|
|
config: NewsletterConfigEnum;
|
2024-12-26 12:04:00 +01:00
|
|
|
comType: CommunicationTypeViewModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface SetNewsletterConfigViewModel {
|
|
|
|
comTypeId: number;
|
2025-04-19 09:42:25 +02:00
|
|
|
config: NewsletterConfigEnum;
|
2024-12-26 12:04:00 +01:00
|
|
|
}
|