Code has been added to clipboard!

Solidity Contract Structure Struct Types

Example
struct Voter { // Struct
        uint voteWeight;
        bool hasVoted;
        address delegateAddress;
        uint voteIndex;
    }