class PropertyValue { /// /// Get or set the value. /// dynamic value; /// /// Get or set date of modification or occurrence. /// DateTime date; /// /// Get or set property age. /// int age; /// /// Create an instance of PropertyValue. /// /// Value. /// Age. /// Date. PropertyValue(this.value, this.age, this.date); }