Skip to content

Instantly share code, notes, and snippets.

@snmslavk
Created January 23, 2018 17:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save snmslavk/c165510424ea48c3be1caf7bea0067fb to your computer and use it in GitHub Desktop.
Save snmslavk/c165510424ea48c3be1caf7bea0067fb to your computer and use it in GitHub Desktop.
namespace DigitalFuture.Intranet.Models.Analytics
{
public class Content
{
public string segment { get; set; }
public string dateLabel { get; set; }
public object date { get; set; }
public string key { get; set; }
public int visits { get; set; }
public int value { get; set; }
public int conversions { get; set; }
public int timeOnSite { get; set; }
public int pageViews { get; set; }
public int bounces { get; set; }
public int count { get; set; }
public double valuePerVisit { get; set; }
public double bounceRate { get; set; }
public double avgVisitDuration { get; set; }
public double conversionRate { get; set; }
public double avgVisitPageViews { get; set; }
public double avgVisitCount { get; set; }
public double avgPageCount { get; set; }
public double avgCountValue { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment