namespace download_admin; public class Download { public string Key {get; private set;} public string IpAddress {get; private set;} public string UserAgent {get; private set;} public DateTime Time {get; private set;} public Download(string key, string ip_address, string user_agent, DateTime time) { Key = key; IpAddress = ip_address; UserAgent = user_agent; Time = time; } }