using System; namespace IOB_UT_NEXT.Objects { /// /// Cache a tempo valori INT /// public class CachedInt { #region Public Properties public DateTime ValidUntil { get; set; } = DateTime.Now; public int Value { get; set; } = 0; #endregion Public Properties } }