12 lines
176 B
C#
12 lines
176 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public record Request<TValue> :
|
|
INotification
|
|
{
|
|
|
|
}
|
|
|
|
public class Request
|
|
{
|
|
public static Request<TValue> Create<TValue>() => new();
|
|
} |