Server termination and refactoring message dialogs.

This commit is contained in:
Burak Kaan Köse
2024-08-21 22:42:52 +02:00
parent bab3272970
commit f627226da9
31 changed files with 548 additions and 388 deletions

View File

@@ -0,0 +1,9 @@
using Wino.Core.Domain.Interfaces;
namespace Wino.Messaging.Server
{
/// <summary>
/// This message is sent to server to kill itself when UWP app is terminating.
/// </summary>
public record TerminateServerRequested : IClientMessage;
}