19 lines
212 B
C#
19 lines
212 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public class ChatEntry
|
|
{
|
|
public string sender;
|
|
|
|
public string text;
|
|
|
|
public bool mine;
|
|
|
|
public ChatEntry()
|
|
{
|
|
sender = string.Empty;
|
|
text = string.Empty;
|
|
mine = true;
|
|
}
|
|
}
|