aspnetcore/test/WebSites/HtmlGenerationWebSite/Models/Item.cs

22 lines
584 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.ComponentModel.DataAnnotations;
namespace HtmlGenerationWebSite.Models
{
public class Item
{
[UIHint("Common")]
[Display(Name = "ItemName")]
public string Name { get; set; }
[UIHint("Common")]
[Display(Name = "ItemNo")]
public int Id { get; set; }
[Display(Name = "ItemDesc")]
public string Description { get; set; }
}
}