8 lines
242 B
C#
8 lines
242 B
C#
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;
|