Преглед изворни кода

Merge branch 'master' of http://192.168.1.41:3000/SmartCost/SCCommon

vian пре 4 година
родитељ
комит
6dd4772ee5
1 измењених фајлова са 6 додато и 0 уклоњено
  1. 6 0
      types/src/interface/notification.ts

+ 6 - 0
types/src/interface/notification.ts

@@ -0,0 +1,6 @@
+export interface INotificationListItem {
+  ID: string;
+  status: 'unread' | 'already';
+  title: string;
+  removable: boolean;
+}