The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
5 years ago
|
using System;
|
||
6 years ago
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
4 years ago
|
namespace Teknik.Tracking
|
||
6 years ago
|
{
|
||
|
public class VisitorData
|
||
|
{
|
||
|
public DateTime Date { get; set; }
|
||
|
public int UniqueVisitors { get; set; }
|
||
|
public int Visits { get; set; }
|
||
|
public int VisitsConverted { get; set; }
|
||
|
public int Actions { get; set; }
|
||
|
public decimal ActionsPerVisit { get; set; }
|
||
|
public int MaxActions { get; set; }
|
||
|
public int BounceCount { get; set; }
|
||
|
public string BounceRate { get; set; }
|
||
|
public int AverageTimeOnSite { get; set; }
|
||
|
public int VisitLengthTotal { get; set; }
|
||
5 years ago
|
|
||
|
public VisitorData()
|
||
|
{
|
||
|
Date = DateTime.Now;
|
||
|
UniqueVisitors = 0;
|
||
|
Visits = 0;
|
||
|
VisitsConverted = 0;
|
||
|
Actions = 0;
|
||
|
ActionsPerVisit = 0;
|
||
|
MaxActions = 0;
|
||
|
BounceCount = 0;
|
||
|
BounceRate = string.Empty;
|
||
|
AverageTimeOnSite = 0;
|
||
|
VisitLengthTotal = 0;
|
||
|
}
|
||
6 years ago
|
}
|
||
|
}
|