mirror of
https://github.com/esiur/esiur-dart.git
synced 2025-05-06 20:02:59 +00:00
24 lines
562 B
Dart
24 lines
562 B
Dart
class PropertyValue
|
|
{
|
|
/// <summary>
|
|
/// Get or set the value.
|
|
/// </summary>
|
|
dynamic value;
|
|
/// <summary>
|
|
/// Get or set date of modification or occurrence.
|
|
/// </summary>
|
|
DateTime date;
|
|
/// <summary>
|
|
/// Get or set property age.
|
|
/// </summary>
|
|
int age;
|
|
|
|
/// <summary>
|
|
/// Create an instance of PropertyValue.
|
|
/// </summary>
|
|
/// <param name="value">Value.</param>
|
|
/// <param name="age">Age.</param>
|
|
/// <param name="date">Date.</param>
|
|
PropertyValue(this.value, this.age, this.date);
|
|
}
|