Created
July 22, 2017 09:46
-
-
Save quyetvv/353350a19693f574d6796d907ffe20f1 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 RTMessage { | |
| /// <summary> | |
| /// This field used to set type of message transfered. It can be | |
| /// 0: Stock list changes | |
| /// 1: Sector changes | |
| /// </summary> | |
| public string MsType { get; set; } | |
| /// <summary> | |
| /// Json data | |
| /// </summary> | |
| public string Data { get; set; } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment