Skip to content
Dickson Pun edited this page Jun 23, 2019 · 3 revisions

Basic MVVM

The standard conventions for naming the classes are as follows:

  • Views are suffixed with View after the name of the View (e.g.: StudentListView)
  • ViewModels are suffixed with ViewModel after the name of the ViewModel. (e.g.: StudentListViewModel)
  • Models are not suffixed with Model after the name of the Model (e.g.: StudentModel). This project deviates from this naming convention and omits the Model suffix.

Clone this wiki locally