From edcfe22d667184e71445e51a1ad751fd543c6434 Mon Sep 17 00:00:00 2001 From: Halil ibrahim Kalkan Date: Sat, 4 Aug 2018 23:33:41 +0300 Subject: [PATCH] Remove display names --- docs/Tutorials/AspNetCore-Mvc/Part-II.md | 4 ---- 1 file changed, 4 deletions(-) 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; } } }