2024-10-13 15:48:01 +02:00
|
|
|
export interface SynchronizeProtocolVotingCommand {
|
|
|
|
id: number;
|
|
|
|
topic: string;
|
|
|
|
context: string;
|
|
|
|
favour: number;
|
|
|
|
abstain: number;
|
|
|
|
against: number;
|
2025-03-21 09:46:29 +01:00
|
|
|
sort?: number;
|
2024-10-13 15:48:01 +02:00
|
|
|
protocolId: number;
|
|
|
|
}
|