using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace HH.AMS.Entitys.Common { public class DictionaryEntity { private string itemCode = ""; public string ItemCode { get { return itemCode; } set { itemCode = value; } } private string itemValue = ""; public string ItemValue { get { return itemValue; } set { itemValue = value; } } } }