using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMISOnline.ViewModel.SystemView { public class DictionaryItemView { public string DictionaryCode { get; set; } public string Code { get; set; } public string Name { get; set; } public int? Value { get; set; } } }