From 57acc97e1f9d76c2edbb4eeabae4ea3dd635bb77 Mon Sep 17 00:00:00 2001 From: Ian C Date: Wed, 27 Mar 2024 18:58:09 +0000 Subject: Updated for new download table format. --- Download.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'Download.cs') 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; } } -- cgit v1.2.3