diff --git a/docs/Tutorials/AspNetCore-Mvc/Part-II.md b/docs/Tutorials/AspNetCore-Mvc/Part-II.md index 283ea7f93d..7ee7bbbcaa 100644 --- a/docs/Tutorials/AspNetCore-Mvc/Part-II.md +++ b/docs/Tutorials/AspNetCore-Mvc/Part-II.md @@ -197,16 +197,12 @@ namespace Acme.BookStore { [Required] [StringLength(128)] - [Display(Name = "Name")] public string Name { get; set; } - [Display(Name = "Type")] public BookType Type { get; set; } = BookType.Undefined; - [Display(Name = "PublishDate")] public DateTime PublishDate { get; set; } - [Display(Name = "Price")] public float Price { get; set; } } }