-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimedEvent.cs
32 lines (26 loc) · 942 Bytes
/
timedEvent.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Collections.Generic;
using System.Text;
namespace COLT
{
public class TimedEvent
{
public string sourceIp { get; set; }
public string sourceCity { get; set; }
public string sourceRegion { get; set; }
public string sourceCountry { get; set; }
public string sourceLoc { get; set; }
public string sourcePostal { get; set; }
public string sourceOrg { get; set; }
public long elapsedMiliseconds { get; set; }
public string eventType { get; set; }
public string cloudName { get; set; }
public string cloudType { get; set; }
public string fileName { get; set; }
public long fileSizeInBytes { get; set; }
public DateTime startTime { get; set; }
public DateTime finishTime { get; set; }
public int httpStatusCode { get; set; }
public string url { get; set; }
}
}