format dates to timezone
This commit is contained in:
parent
747adf7c69
commit
4148b3191e
5 changed files with 61 additions and 23 deletions
|
@ -14,8 +14,8 @@ export interface CalendarViewModel {
|
|||
}
|
||||
|
||||
export interface CreateCalendarViewModel {
|
||||
starttime: Date;
|
||||
endtime: Date;
|
||||
starttime: string;
|
||||
endtime: string;
|
||||
title: string;
|
||||
content: string;
|
||||
location: string;
|
||||
|
@ -25,8 +25,8 @@ export interface CreateCalendarViewModel {
|
|||
|
||||
export interface UpdateCalendarViewModel {
|
||||
id: string;
|
||||
starttime: Date;
|
||||
endtime: Date;
|
||||
starttime: string;
|
||||
endtime: string;
|
||||
title: string;
|
||||
content: string;
|
||||
location: string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue