2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2025-05-06 12:02:57 +00:00
esiur-dart/bin/Data/PropertyValue.dart
2019-08-07 05:12:10 +03:00

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);
}