18 lines
327 B
C#
18 lines
327 B
C#
|
|
namespace MECF.Framework.UI.Client.RecipeEditorLib.RecipeModel.Params
|
|||
|
|
{
|
|||
|
|
public class BoolParam : ParamBaseWithGenericValue<bool>
|
|||
|
|
{
|
|||
|
|
#region Constructors
|
|||
|
|
|
|||
|
|
public BoolParam()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public BoolParam(bool initValue) : base(initValue)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
}
|
|||
|
|
}
|