Code has been added to clipboard!

Representing Proposals in Solidity

Example
struct Proposal {
        bytes32 name;
        uint voteCount;
    }

    address public chairperson;