9 lines
264 B
C#
9 lines
264 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;
|
|||
|
|
}
|