I am using C# along with a ViewModel that passes the view model from the controller to the view.
In my view model, the following seems to work as expected as it passes the Description information from the view back to the controller:
public string Description { get; set; }
But if I have the following, it won't pass back the Description. Description shows null.
public string Description
Why is the { get; set; }
important?