19 lines
354 B
C#
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
|
|
}
|
|
|
|
}
|