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

18 lines
343 B
C#

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