2025-02-16 11:43:30 +01:00
|
|
|
|
namespace Wino.Core.Domain.Interfaces
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// All messages that Client sends to Server and awaits a response in return.
|
|
|
|
|
|
/// For example; triggering a new synchronization request.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public interface IClientMessage;
|
|
|
|
|
|
}
|