Merge branch 'ConnectionController' of https://sourcecode.socialcoding.bosch.com/scm/~hpl2fe/polychat into ConnectionController

This commit is contained in:
Patrick Hellebrand
2021-09-23 11:30:15 +02:00
2 changed files with 29 additions and 5 deletions

View File

@@ -12,6 +12,11 @@ namespace PolyChat.Models
public DateTime TimeStamp;
public readonly bool Foreign;
public ChatMessage()
{
}
/// <summary>
/// Create own Message (directly sent)
/// </summary>
@@ -43,7 +48,7 @@ namespace PolyChat.Models
Type = type;
Content = content;
Foreign = foreign;
Debug.WriteLine("Created Loaded Message: " + ToString());
Debug.WriteLine("Created Loaded Message: " + ToString());
}
override