enable sort with normalization
This commit is contained in:
parent
74a13e6dc2
commit
4d61e9ce7c
9 changed files with 120 additions and 16 deletions
|
@ -2,6 +2,7 @@ export interface ProtocolAgendaViewModel {
|
|||
id: number;
|
||||
topic: string;
|
||||
context: string;
|
||||
sort: number;
|
||||
protocolId: number;
|
||||
}
|
||||
|
||||
|
@ -9,4 +10,5 @@ export interface SyncProtocolAgendaViewModel {
|
|||
id?: number;
|
||||
topic: string;
|
||||
context: string;
|
||||
sort?: number;
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@ export interface ProtocolDecisionViewModel {
|
|||
id: number;
|
||||
topic: string;
|
||||
context: string;
|
||||
sort: number;
|
||||
protocolId: number;
|
||||
}
|
||||
|
||||
|
@ -9,4 +10,5 @@ export interface SyncProtocolDecisionViewModel {
|
|||
id?: number;
|
||||
topic: string;
|
||||
context: string;
|
||||
sort?: number;
|
||||
}
|
||||
|
|
|
@ -5,6 +5,7 @@ export interface ProtocolVotingViewModel {
|
|||
favour: number;
|
||||
abstain: number;
|
||||
against: number;
|
||||
sort: number;
|
||||
protocolId: number;
|
||||
}
|
||||
|
||||
|
@ -15,5 +16,5 @@ export interface SyncProtocolVotingViewModel {
|
|||
favour: number;
|
||||
abstain: number;
|
||||
against: number;
|
||||
protocolId: number;
|
||||
sort?: number;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue