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

@@ -1,6 +1,4 @@
using Wino.Core.Domain.Interfaces;
namespace Wino.Messages.Server
namespace Wino.Messaging.Server
{
public record DraftMapped(string LocalDraftCopyId, string RemoteDraftCopyId) : IServerMessage;
public record DraftMapped(string LocalDraftCopyId, string RemoteDraftCopyId) : ServerMessageBase<DraftMapped>;
}