18 lines
343 B
C#
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
|
|
}
|
|
}
|