import { BytepicNoticeType } from "../enums/bytepic-notice-type"; import { BytepicBaseAuditModel } from "./bytepic-base-audit-model"; export interface BytepicNoticeModel extends BytepicBaseAuditModel { id?: string; type: BytepicNoticeType; title: string; description: string; iconClass?: string; imageUrl?: string; }