1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-01-02 03:37:54 +02:00
pigallery2/common/entities/NotificationDTO.ts

10 lines
168 B
TypeScript
Raw Normal View History

export enum NotificationType {
2018-05-28 20:03:12 +02:00
error = 1, warning = 2, info = 3
2017-07-09 14:23:50 +02:00
}
export interface NotificationDTO {
type: NotificationType;
message: string;
details?: any;
}