Skip to content

Instantly share code, notes, and snippets.

@snmslavk
Created January 23, 2018 17:08
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/7510c0cb3121e3eadafdbb3f9705e2cd to your computer and use it in GitHub Desktop.
Save snmslavk/7510c0cb3121e3eadafdbb3f9705e2cd to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
namespace DigitalFuture.Intranet.Models.Analytics
{
public class ChartObject
{
public int totalRecordCount { get; set; }
public string timeResolution { get; set; }
public List<object> messages { get; set; }
public Data data { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment