You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
177 B

12 years ago
  1. using System;
  2. namespace Example1
  3. {
  4. internal class TextMessage
  5. {
  6. public uint? user_id;
  7. public string name;
  8. public string type;
  9. public string message;
  10. }
  11. }