1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/Utilities/Piwik/VisitorData.cs
2017-02-17 00:45:40 -08:00

24 lines
699 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Teknik.Piwik
{
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; }
}
}