In an ASP.NET MVC application, what do you do when you have unique classes that aren't controllers, helpers or view-models?
For example, say you have a class of utilities that are useful for processing map/location data.
These utilities may be used by more than one controller.
Would you create a top-level folder/namespace for them and call it 'Maps' or something?