basic routing and info display
This commit is contained in:
parent
c1e9784b4a
commit
e70e6644a6
12 changed files with 211 additions and 125 deletions
|
@ -2,15 +2,24 @@ export interface ProtocolViewModel {
|
|||
id: number;
|
||||
title: string;
|
||||
date: Date;
|
||||
starttime: Date;
|
||||
endtime: Date;
|
||||
summary: string;
|
||||
}
|
||||
|
||||
export interface CreateProtocolViewModel {
|
||||
title: string;
|
||||
date: Date;
|
||||
starttime: Date;
|
||||
endtime: Date;
|
||||
summary: string;
|
||||
}
|
||||
|
||||
export interface UpdateProtocolViewModel {
|
||||
id: number;
|
||||
title: string;
|
||||
date: Date;
|
||||
starttime: Date;
|
||||
endtime: Date;
|
||||
summary: string;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue