Skip to content

Instantly share code, notes, and snippets.

@dbarkol
Created March 14, 2018 06:01
Embed
What would you like to do?
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