Files
School/Anul 2/Semestrul 2/ISS/Lab2/CacheModule/CachedObject.cs
T
2024-08-31 12:07:21 +03:00

18 lines
338 B
C#

using System;
namespace CacheModule{
public class CachedObject
{
public object? Value { get; set; }
public DateTime Timestamp {get; set; }
public int Duration { get; set; }
public bool IsExpired()
{
return DateTime.Now > Timestamp.AddSeconds(Duration);
}
}
}