protocol base views
This commit is contained in:
parent
f453bdc7d3
commit
c1e9784b4a
14 changed files with 708 additions and 24 deletions
16
src/viewmodels/admin/protocol.models.ts
Normal file
16
src/viewmodels/admin/protocol.models.ts
Normal file
|
@ -0,0 +1,16 @@
|
|||
export interface ProtocolViewModel {
|
||||
id: number;
|
||||
title: string;
|
||||
date: Date;
|
||||
}
|
||||
|
||||
export interface CreateProtocolViewModel {
|
||||
title: string;
|
||||
date: Date;
|
||||
}
|
||||
|
||||
export interface UpdateProtocolViewModel {
|
||||
id: number;
|
||||
title: string;
|
||||
date: Date;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue