using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Data;
public class PropertyValue
{
    /// 
    /// Get or set the value.
    /// 
    public object Value { get; set; }
    /// 
    /// Get or set date of modification or occurrence.
    /// 
    public DateTime? Date { get; set; }
    /// 
    /// Get or set property age.
    /// 
    public ulong? Age { get; set; }
    /// 
    /// Create an instance of PropertyValue.
    /// 
    /// Value.
    /// Age.
    /// Date.
    public PropertyValue(object value, ulong? age, DateTime? date)
    {
        Value = value;
        Age = age;
        Date = date;
    }
}