package de.dtele.data {
  
  public class Property {
    
    private var _title:String;
    /**
     * The human readable property title
     */
    public function get title():String { return this._title; }
    /**
     * @private
     */
    protected function set title(value:String):void { this._title = value; }
    
    private var _defaultValue:String;
    /**
     * The default value of this property
     */
    public function get defaultValue():String { return this._defaultValue; }
    /**
     * @private
     */
    public function set defaultValue(value:String):void { this._defaultValue = value; }
    
    public function Property(title:String, defaultValue:String = null) {
      
      this.title = title;
      this.defaultValue = defaultValue;
    }
  }
}