8 lines
147 B
C#
8 lines
147 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public record Request<TValue>;
|
|
|
|
public class Request
|
|
{
|
|
public static Request<TValue> As<TValue>() => new();
|
|
} |