namespace Prefab.Handler;
///
/// Represents a sentinel value indicating the absence of a request.
///
/// Use this type when an operation or API requires a value to signify that no request is present. This
/// can be useful in scenarios where a method or handler expects a request type but no data is needed.
public readonly record struct NoRequest
{
public static readonly NoRequest Instance = default;
}