Replace Mediator with Messenger

This commit is contained in:
Dan Clark
2024-11-16 13:52:03 +00:00
parent 469a52efaa
commit f16dbaf375
73 changed files with 615 additions and 1345 deletions
+4 -2
View File
@@ -1,11 +1,13 @@
namespace Toolkit.Foundation;
using CommunityToolkit.Mvvm.Messaging;
namespace Toolkit.Foundation;
public interface IObservableViewModel :
IDisposable
{
public IDisposer Disposer { get; }
public IPublisher Publisher { get; }
public IMessenger Messenger { get; }
public IServiceFactory Factory { get; }