I have a simple strongly-typed view.
@model GoldForGold.Models.LogonModel @{ ViewBag.Title = \"Logins\"; Layout = \"~/Views/Shared/_Layout.cshtml\";
For the record, you can include the following code at the end of your view, to make sure that the [Required] attribute pops up in the user interface:
[Required]
@section Scripts { @Scripts.Render("~/bundles/jqueryval") }