13 lines
350 B
TypeScript
13 lines
350 B
TypeScript
import { QueryStoreViewModel } from "../../configuration/queryStore.models";
|
|
|
|
export interface NewsletterViewModel {
|
|
id: number;
|
|
title: string;
|
|
description: string;
|
|
newsletterTitle: string;
|
|
newsletterText: string;
|
|
newsletterSignatur: string;
|
|
isSent: boolean;
|
|
recipientsByQueryId?: number;
|
|
recipientsByQuery?: QueryStoreViewModel;
|
|
}
|