// Author: Gockner, Simon
// Created: 2022-09-02
// Copyright(c) 2022 SimonG. All Rights Reserved.
namespace LightweightIocContainer;
///
/// Wrapper class to handle null passed as an argument correctly
///
public class NullParameter
{
///
/// Wrapper class to handle null passed as an argument correctly
///
/// The of the parameter
public NullParameter(Type parameterType) => ParameterType = parameterType;
///
/// The of the parameter
///
public Type ParameterType { get; }
}