Files
Mapo-IOB-WIN/IOB-UT-NEXT/Objects/CachedString.cs
T
2026-05-21 20:05:29 +02:00

19 lines
354 B
C#

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