Update Naming Guidelines authored by Brennan Mulligan's avatar Brennan Mulligan
......@@ -4,7 +4,7 @@ Great styling and naming schemes for classes, variables, objects, and methods is
When the same thing is used in multiple places such as variables, methods, objects, use the same name. This helps readability between classes as you are clearly talking about a specific thing that is used there and nowhere else.
## Variable Guidelines
**Variables** must follow camelCase (IDs and DTOs are an exception). Examples: freshmenFunTimes, teacherID, questRecordDTOs.
**Variables** must follow camelCase (IDs and DTOs are an exception). Examples: freshmenFunTimes, teacherID, questRecordDTOs. Note: When the variable is just called id, it is lowercase.
Variables should **match** what they are in the database and in other classes if its the exact same thing.
......
......