import { Model } from 'sequelize-typescript'; export default class Notification extends Model { id: number; processName: string; status: string; type: string; text2Watch: string; when2Notify: string; includeInDailyReport: boolean; maxMessagePerDay: number; emailTo: string; emailFrom: string; emailSubject: string; message: string; createdAt: Date; updatedAt: Date; }