Pagination central
This commit is contained in:
parent
60d6150105
commit
8664836a20
11 changed files with 313 additions and 151 deletions
6
src/viewmodels/admin/protocolAgenda.models.ts
Normal file
6
src/viewmodels/admin/protocolAgenda.models.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
export interface ProtocolAgendaViewModel {
|
||||
id: number;
|
||||
topic: string;
|
||||
context: string;
|
||||
protocolId: number;
|
||||
}
|
6
src/viewmodels/admin/protocolDecision.models.ts
Normal file
6
src/viewmodels/admin/protocolDecision.models.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
export interface ProtocolDecisionViewModel {
|
||||
id: number;
|
||||
topic: string;
|
||||
context: string;
|
||||
protocolId: number;
|
||||
}
|
7
src/viewmodels/admin/protocolPresence.models.ts
Normal file
7
src/viewmodels/admin/protocolPresence.models.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
import { MemberViewModel } from "./member.models";
|
||||
|
||||
export interface ProtocolPresenceViewModel {
|
||||
memberId: number;
|
||||
member: MemberViewModel;
|
||||
protocolId: number;
|
||||
}
|
9
src/viewmodels/admin/protocolVoting.models.ts
Normal file
9
src/viewmodels/admin/protocolVoting.models.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
export interface ProtocolVotingViewModel {
|
||||
id: number;
|
||||
topic: string;
|
||||
context: string;
|
||||
favour: number;
|
||||
abstain: number;
|
||||
against: number;
|
||||
protocolId: number;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue