Created
February 26, 2017 15:41
-
-
Save manifoldhiker/8e03e7f5ecc8c8d845f99c6913ef98e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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