I have an image model and with it are a set of sizes that the image can be resized to that consist of a string name and the max height/width for that size.
My initial thought was to put it in the database and create a model for image sizes, but this seems like overkill and this would be called fairly often and not changed very often.
So I thought I could store it as a form of static data (a list of an ImageSize class or something), but I'm not sure where in the Controller to put this.
Where should I put this data?