Files
polychat/PolyChat/Models/ChatMessage.cs
Patrick Hellebrand 9533c9b666 Add project files.
2021-09-21 08:05:08 +02:00

23 lines
490 B
C#

namespace PolyChat.Models
{
public class ChatMessage
{
public string Text;
public string Date;
public bool Foreign;
public ChatMessage(string text, string date, bool foreign)
{
Text = text;
Date = date;
Foreign = foreign;
}
override
public string ToString()
{
string prefix = Foreign ? "Other" : "Me";
return $"{prefix}: Text";
}
}
}