added notification model
This commit is contained in:
parent
916063c9bf
commit
4c584b8c35
14
src/packages/notification/model/Notification.ts
Normal file
14
src/packages/notification/model/Notification.ts
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
import { Member } from 'packages/member/model';
|
||||||
|
|
||||||
|
|
||||||
|
interface Notification {
|
||||||
|
id?: number;
|
||||||
|
createDate?: Date;
|
||||||
|
title?: string;
|
||||||
|
message?: string;
|
||||||
|
member?: Member;
|
||||||
|
confirmDate?: Date;
|
||||||
|
url?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Notification;
|
0
src/packages/notification/notification.constant.ts
Normal file
0
src/packages/notification/notification.constant.ts
Normal file
0
src/packages/notification/service/index.ts
Normal file
0
src/packages/notification/service/index.ts
Normal file
0
src/packages/notification/store/index.ts
Normal file
0
src/packages/notification/store/index.ts
Normal file
Loading…
Reference in New Issue
Block a user