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