Importance property
Importance?
get
Importance
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?;
set
Importance
(Importance? value)
Implementation
set Importance(complex.Importance? value) =>
this.PropertyBag[ItemSchema.Importance] = value;