Files
DP44/Common/DTS.Common/.svn/pristine/be/bea5587c73f43b6e408777f0bdfff4daaf1e452a.svn-base
2026-04-17 14:55:32 -04:00

17 lines
430 B
Plaintext

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; }
}
}