I have been coding classes like this:
public class ReportViewModel { public string Status; public string DataSource; public Stri
When you don't add the get and set you are using a field rather than a property. Which in many cases won't make a lot of difference. However, you can't databind to a field like you can with a Property. So you would lose that.