Skip to content

Instantly share code, notes, and snippets.

@manifoldhiker
Created February 26, 2017 15:41
Show Gist options
  • Save manifoldhiker/8e03e7f5ecc8c8d845f99c6913ef98e3 to your computer and use it in GitHub Desktop.
Save manifoldhiker/8e03e7f5ecc8c8d845f99c6913ef98e3 to your computer and use it in GitHub Desktop.
public class Message
{
public string Target { get; set; }
public string Text { get; set; }
public string Date { get; set; }
public string Out { get; set; }
public Message() { }
public Message(string t, string text)
{
Target = t;
Text = text;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment