Well, I use visual studio 2015 CE, update 2. One productivity hack I usually do is that I create empty model classes like:
public class PersonModel { }
You can do that by typing prop and press the TAB twice. It will require you to enter type and name for property though, won't extract it from existing one.
prop
TAB
Best regards.