mirror of
https://github.com/esiur/esiur-dart.git
synced 2026-04-03 17:58:21 +00:00
package
This commit is contained in:
23
lib/src/Data/PropertyValue.dart
Normal file
23
lib/src/Data/PropertyValue.dart
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user