Files
Toolkit2/Toolkit.Foundation/Request.cs
T
TheXamlGuy 9f90ef693d Refactor
2024-04-26 22:27:31 +01:00

8 lines
147 B
C#

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