2024-10-11 14:43:56 +02:00
|
|
|
export interface ProtocolVotingViewModel {
|
|
|
|
id: number;
|
|
|
|
topic: string;
|
|
|
|
context: string;
|
|
|
|
favour: number;
|
|
|
|
abstain: number;
|
|
|
|
against: number;
|
|
|
|
protocolId: number;
|
|
|
|
}
|
2024-10-13 15:47:52 +02:00
|
|
|
|
|
|
|
export interface SyncProtocolVotingViewModel {
|
|
|
|
id?: number;
|
|
|
|
topic: string;
|
|
|
|
context: string;
|
|
|
|
favour: number;
|
|
|
|
abstain: number;
|
|
|
|
against: number;
|
|
|
|
protocolId: number;
|
|
|
|
}
|