Files
2026-05-24 12:14:04 +02:00

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;
}
}