@Html.RadioButtonFor(Model => Model.Location, \"Location\")
@Html.LabelFor(Model=>Model.Location,\"Location\")
@Html.RadioButtonFor(Model=>Model.Mod
Just create a dummy property in your Model class like, public string Dummy{get; set;}
@Html.RadioButtonFor(Model => Model.Location, "LOC", new { @Name = "Dummy"})
@Html.RadioButtonFor(Model => Model.Model_Number, "MOD", new { @Name = "Dummy" })
@Html.RadioButtonFor(Model => Model.MovableUnit, "MU", new { @Name = "Dummy" })
Get the value "LOC", "MOD", "MU" using property name 'Dummy'.