summaryrefslogtreecommitdiff
path: root/Download.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Download.cs')
-rw-r--r--Download.cs8
1 files changed, 3 insertions, 5 deletions
diff --git a/Download.cs b/Download.cs
index ff0f3ce..eda8967 100644
--- a/Download.cs
+++ b/Download.cs
@@ -19,15 +19,13 @@ 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 string[] Info {get; private set;}
public DateTime Time {get; private set;}
- public Download(string key, string ip_address, string user_agent, DateTime time)
+ public Download(string key, string[] info, DateTime time)
{
Key = key;
- IpAddress = ip_address;
- UserAgent = user_agent;
+ Info = info;
Time = time;
}
}