I have a lot of developed in Windows.NET forms, and each of them is named because they have no prefixes. However, I often have to declare another class containing the column names that the form uses.
For example, I have an Address class, which is a form for serving addresses. However, I also need a class that I would also like to call an Address, which basically just contains the declarations of the Name and Address fields. I am looking for a good naming convention to distinguish between the two (class definition in relation to form).
source share