Skip to content

Instantly share code, notes, and snippets.

@dbarkol
Created March 14, 2018 06:01
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 dbarkol/75b2a1073be906e046e534a4634d34c4 to your computer and use it in GitHub Desktop.
Save dbarkol/75b2a1073be906e046e534a4634d34c4 to your computer and use it in GitHub Desktop.
using System;
namespace viewer.Models
{
public class GridEvent<T> where T: class
{
public string Id { get; set;}
public string EventType { get; set;}
public string Subject {get; set;}
public DateTime EventTime { get; set; }
public T Data { get; set; }
public string Topic { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment