Created
September 28, 2017 10:42
-
-
Save NMZivkovic/608285d0f5f10c070eec36ed6bfd976f 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 Text { get; private set; } | |
public Message(string text) | |
{ | |
Text = text; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment