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