What is the preferred naming convention for Django model classes?
In most of programming languages, people prefer give a singular names to the objects/models because these models are also represented by tables in your database system. The minimalism is a good choice everytime to avoid some meaning conflicts in the future.
To exemplify; https://stackoverflow.com/a/5841297/2643226