10 lines
182 B
TypeScript
10 lines
182 B
TypeScript
|
export interface SynchronizeProtocolVotingCommand {
|
||
|
id: number;
|
||
|
topic: string;
|
||
|
context: string;
|
||
|
favour: number;
|
||
|
abstain: number;
|
||
|
against: number;
|
||
|
protocolId: number;
|
||
|
}
|