Skip to content

Instantly share code, notes, and snippets.

@tonysneed
Created June 25, 2020 17:18
Show Gist options
  • Save tonysneed/5c0b7907062d1ae4581402d744ba1cc0 to your computer and use it in GitHub Desktop.
Save tonysneed/5c0b7907062d1ae4581402d744ba1cc0 to your computer and use it in GitHub Desktop.
Message
public class Message<TKey, TValue> : Message
{
public TKey Key { get; set; }
public TValue Value { get; set; }
public Message(TKey key, TValue value)
{
Key = key;
Value = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment