Files
Toolkit2/Toolkit.Foundation/Request.cs
T
2024-04-13 11:29:32 +01:00

12 lines
176 B
C#

namespace Toolkit.Foundation;
public record Request<TValue> :
INotification
{
}
public class Request
{
public static Request<TValue> Create<TValue>() => new();
}