enum Stage {
PREP,
COMMIT,
REVEAL,
RESOLVED
}
struct Ballot {
uint256 checkpointId,
uint256 quorum,
uint64 commitDuration,
uint64 revealDuration,
uint64 startTime,
uint24 totalProposals,
uint32 totalVoters,
bool isActive,
mapping(uint256 => uint256) proposalToVotes,
mapping(address => struct PLCRVotingCheckpointStorage.Vote) investorToProposal,
mapping(address => bool) exemptedVoters
}
struct Vote {
uint256 voteOption,
bytes32 secretVote
}
struct PLCRVotingCheckpointStorage.Ballot[] internal ballots;