Cannot retrieve properties in model after POST (MVC)

Model properties are all null after retrieving from POST request.

Check if they are properties instead of attributes.

Example: instead of

public String property;

Use

public String property { get; set; }