export interface INotifierMessage {
    id?: string;
    type: string;
    title?: string;
    content?: string;
    icon: string;
    state?: string;
}
