Modified Example1

This commit is contained in:
sta
2014-03-12 20:23:37 +09:00
parent 9a22fb4235
commit f068425b10
7 changed files with 292 additions and 289 deletions

12
Example1/TextMessage.cs Normal file
View File

@@ -0,0 +1,12 @@
using System;
namespace Example1
{
internal class TextMessage
{
public uint? user_id;
public string name;
public string type;
public string message;
}
}