import { QueryStoreViewModel } from "./queryStore.models";

export interface NewsletterViewModel {
  id: number;
  title: string;
  description: string;
  newsletterTitle: string;
  newsletterText: string;
  newsletterSignatur: string;
  isSent: boolean;
  recipientsByQueryId?: number;
  recipientsByQuery?: QueryStoreViewModel;
}