2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2026-04-03 17:58:21 +00:00
This commit is contained in:
2019-08-07 17:12:20 +03:00
parent b796bf9436
commit 1bf0bc32ae
80 changed files with 394 additions and 13 deletions

View File

@@ -0,0 +1,23 @@
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);
}