If my model have
[DisplayName(\"First Name\")] public string firstName { get; set; }
Then I can print it in the View with LabelFor
you should simply use
[Display(Name = "First Name")] public string name{ get; set; }