Treefrog.Framework.Model.BoolProperty.BoolProperty C# (CSharp) Method

BoolProperty() public method

Creates a new BoolProperty instance from a given name and value.
public BoolProperty ( string name, bool value ) : System
name string The name of the property.
value bool The value of the property.
return System
        public BoolProperty(string name, bool value)
            : base(name)
        {
            _value = value;
        }

Same methods

BoolProperty::BoolProperty ( string name, BoolProperty property ) : System