using System; namespace IOB_UT_NEXT.Objects { /// /// Cache a tempo valori String /// public class CachedString { #region Public Properties public DateTime ValidUntil { get; set; } = DateTime.Now; public string Value { get; set; } = ""; #endregion Public Properties } }