Importance property

Importance? Importance
Gets or sets the culture associated with this item. Gets or sets the importance of this item.

Implementation

// String Culture
//        {
//            get { return (string)this.PropertyBag[ItemSchema.Culture]; }
//            set {  }
//        }

/// <summary>
/// Gets or sets the importance of this item.
/// </summary>

complex.Importance? get Importance =>
    this.PropertyBag[ItemSchema.Importance] as complex.Importance?;
void Importance=(Importance? value)

Implementation

set Importance(complex.Importance? value) =>
    this.PropertyBag[ItemSchema.Importance] = value;