using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CCSTrace.CCS.Domain { public class Codelist { public Codelist(int indexId, int keyId, string item, string content) { IndexId = indexId; KeyId = keyId; Item = item; Content = content; } public int IndexId { get; } public int KeyId { get; } public string Item { get; } public string Content { get; } } }