UIMessage communication. Single instancing for server and re-connection mechanism on suspension.

This commit is contained in:
Burak Kaan Köse
2024-07-17 22:36:10 +02:00
parent ad1c7e1fd3
commit 329eae3a25
87 changed files with 412 additions and 321 deletions

View File

@@ -0,0 +1,8 @@
namespace Wino.Messaging.Enums
{
public enum MessageType
{
UIMessage, // For database changes that needs to be reflected in the UI.
ServerAction, //
}
}