I often have this kind of situation – there’s a simple plain class, say, Article. And there’s another class which stores all articles and meta information about them. I usually name it ArticlesManager. But I’ve read that this is a bad practice to have such words as Manager, Class in class name. So, how should we call it and how should we call its namespace if Article class is in Models namespace?
Share
How about naming it (as you did in your question) ArticleMeta?