How would I have the following data structure be saved in an Ethereum contract using solidity?
{
address1 => [struct1, struct2, struct3, struct4, struct5],
address2 => [struct1, struct2, struct3, struct4, struct5],
address3 => [struct1, struct2, struct3, struct4, struct5],
...
}
The goal is for me to be able to easily access the array of structs associated to each user/address.