2025-02-16 11:54:23 +01:00
|
|
|
namespace Wino.Messaging.Enums;
|
|
|
|
|
|
|
|
|
|
public enum MessageType
|
2024-08-05 00:36:26 +02:00
|
|
|
{
|
2025-02-16 11:54:23 +01:00
|
|
|
UIMessage, // For database changes that needs to be reflected in the UI. Either client sends it to itself or server sends it to client.
|
|
|
|
|
ServerMessage, // For all actions that UWP awaits a response from Server. Caller is awaited, response returned in the app service connection args.
|
2024-08-05 00:36:26 +02:00
|
|
|
}
|