summaryrefslogtreecommitdiff
path: root/Download.cs
blob: 6e043cbd6d0ddf8aab322893e95403db67a2f919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
    }
}