Class Naming Conventions
I'm currently renaming all the classes in my Discord Bot project but I'm stumped to decide what the suffix should be for a class that the wrapper for a collection in a database.
Currently I have;
Context wouldn't make sense, since I am not using Entity Framework.Currently I have;
Servicesfor classes that just do things (like handling guild logging events)Modulesfor the interaction modules that are used by Discord.NET (handling slash commands)ModelsWhatever is the type for the collectionControllerASP.NET controllers, duh.
