2024-07-16 14:56:46 +02:00
|
|
|
|
namespace Wino.Core.Domain.Interfaces
|
2024-04-18 01:44:37 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Interface for all messages to report UI changes from synchronizers to UI.
|
|
|
|
|
|
/// None of these messages can't run a code that manipulates database.
|
|
|
|
|
|
/// They are sent either from processor or view models to signal some other
|
|
|
|
|
|
/// parts of the application.
|
|
|
|
|
|
/// </summary>
|
2024-07-17 22:36:10 +02:00
|
|
|
|
|
2024-07-16 23:28:57 +02:00
|
|
|
|
public interface IServerMessage;
|
2024-04-18 01:44:37 +02:00
|
|
|
|
}
|