Files
Toolkit2/Toolkit.Foundation/ResponseEventArgs.cs
T
2024-11-16 13:52:03 +00:00

9 lines
213 B
C#

using CommunityToolkit.Mvvm.Messaging.Messages;
namespace Toolkit.Foundation;
public class ResponseEventArgs<TMessage, TResponse> :
RequestMessage<TResponse>
{
public TMessage? Message { get; set; }
}