using System; using System.Collections.Generic; using System.Linq; namespace Sony.Filtr.DistributedCaching { public class SpecialListCacheItem { public DateTime UtcCacheTime { get; set; } public List Items { get; set; } } }