Message Klasse erzeugt und verwendet in Parser.cs
This commit is contained in:
19
src/Message.cs
Normal file
19
src/Message.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace inf3
|
||||
{
|
||||
public class Message
|
||||
{
|
||||
int sourceID;
|
||||
string source;
|
||||
string text;
|
||||
|
||||
public Message (int srcid, string src, string txt)
|
||||
{
|
||||
sourceID = srcid;
|
||||
source = src;
|
||||
text = txt;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user