I'm looking to associate zero to three images to a class object when it is being created and I don't know the best way to do this.
Example: When a user creates a picture contest, they define their picture style with zero to three images. These are static images so they will never be updated.
The only way I can think of is to create a separate class called stylePictures and have three fields in the Contest saying "styleOne" "styleTwo" and "styleThree" which can be null. This seems like it is not the most efficient way to do this.
Any ideas?