# How to do a struct in solidity

By [geroo.eth](https://paragraph.com/@geroo-eth) · 2021-12-29

---

    contract Struct {
    
    struct User {
      uint userNumber;
      string userName;
      address userAddress;
    }
    
    User[] public users;
    
    }

---

*Originally published on [geroo.eth](https://paragraph.com/@geroo-eth/how-to-do-a-struct-in-solidity)*
