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
+8
View File
@@ -0,0 +1,8 @@
using CommunityToolkit.Mvvm.Messaging;
namespace Toolkit.Foundation;
public interface IMessengerRequired
{
IMessenger Messenger { get; }
}