Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 6917815

Browse files
author
Josh Graber
committed
Use dates instead of strings.
1 parent ec025a2 commit 6917815

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/components/messageLog/messageLog.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ export var factoryName: string = 'messageLog';
99
export var defaultPageSize: number = 10;
1010

1111
export interface IMessage {
12+
id?: number;
1213
message: string;
1314
createdBy?: string,
14-
createdDate?: string,
15-
createdTime?: string,
15+
createdDate?: Date,
1616
}
1717

1818
export interface IGetMessagesResult {

0 commit comments

Comments
 (0)