2025-02-16 11:54:23 +01:00
|
|
|
namespace Wino.Core.Domain.Interfaces;
|
2024-08-05 00:36:26 +02:00
|
|
|
|
2025-02-16 11:54:23 +01: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>
|
|
|
|
|
|
|
|
|
|
public interface IUIMessage;
|