namespace ImageProcessor.Web.Caching
{
#region Using
using System;
#endregion
///
/// Describes a cached image
///
public sealed class CachedImage
{
///
/// Gets or sets the key identifying the cached image.
///
public string Key { get; set; }
///
/// Gets or sets the value of the cached image.
///
public string Path { get; set; }
///
/// Gets or sets the last write time of the cached image.
///
public DateTime LastWriteTimeUtc { get; set; }
}
}