// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) James South.
// Licensed under the Apache License, Version 2.0.
//
//
// Describes a cached image
//
// --------------------------------------------------------------------------------------------------------------------
namespace ImageProcessor.Web.Caching
{
#region Using
using System;
#endregion
///
/// Describes a cached image
///
internal 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; }
}
}