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