add sorting to protocol agenda, decision and votings
This commit is contained in:
parent
4b6f0b34df
commit
2e5b345daa
22 changed files with 138 additions and 16 deletions
|
@ -2,5 +2,6 @@ export interface ProtocolAgendaViewModel {
|
|||
id: number;
|
||||
topic: string;
|
||||
context: string;
|
||||
sort: number;
|
||||
protocolId: number;
|
||||
}
|
||||
|
|
|
@ -2,5 +2,6 @@ export interface ProtocolDecisionViewModel {
|
|||
id: number;
|
||||
topic: string;
|
||||
context: string;
|
||||
sort: number;
|
||||
protocolId: number;
|
||||
}
|
||||
|
|
|
@ -5,5 +5,6 @@ export interface ProtocolVotingViewModel {
|
|||
favour: number;
|
||||
abstain: number;
|
||||
against: number;
|
||||
sort: number;
|
||||
protocolId: number;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue