Which nouns do you find yourself putting regularly at the end of your classes?
For example, I have a habit of sticking Info onto classes that pass information around but don't do a great deal:
ImportInfoSiteInfo
Or for Coordinating classes:
UserManagerSecurityManager
I end up using Builder quite often for string related classes, even if it barely does any building:
TemplateBuilderHtmlBuilder
And of course the timeless Helper/Utility class:
PhraseHelperNumberUtilityFileHelper
Have you got any good, by which I mean concise and descriptive, nouns or words you regularly use to denote the class' main role?
This question is aimed at the .NET world, but can extend to Java, C++, Python and so on.