瀏覽代碼

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

vian 5 年之前
父節點
當前提交
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;
+}