using System; using System.Linq; namespace Sony.Filtr.DistributedCaching { [Serializable] public class ToLargeObject { public ToLargeObject(int count) { Count = count; } public int Count { get; set; } } [Serializable] public class CacheItemTooLargeObject : ToLargeObject { public CacheItemTooLargeObject(int count) : base(count) { } public DateTime UtcCacheTime { get; set; } public int GroupCount { get; set; } } }