Files

17 lines
430 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using System;
namespace DTS.Common.Interface.TestSetups.CachedItemsList
{
public interface ICachedItem
{
string Name { get; }
string ObjectType { get; }
DateTime CacheTime { get; }
/// <summary>
/// DateTime.MinValue indicates no longer in db, otherwise
/// the LastModified time in the db
/// </summary>
DateTime DBTime { get; }
}
}