namespace Mapbox.Platform.Cache { using System; public class CacheItem { /// Raw response data- public byte[] Data; /// UTC ticks when item was added to the cache. public long AddedToCacheTicksUtc; /// ETag value of API response. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag public string ETag; /// Can be 'null' as not all APIs populated this value. Last-Modified value of API response in GMT: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Last-Modified public DateTime? LastModified; } }