using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Neo.Legitimate.Data.Models { public class SimpleDocument { public SimpleDocument(long key, string value, short documentTypeID) { Key = key; Value = value; DocumentTypeID = documentTypeID; } public long Key { get; set; } public string Value { get; set; } public short DocumentTypeID { get; set; } } }