// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) James South.
// Licensed under the Apache License, Version 2.0.
//
//
// Describes a cached image for cleanup.
//
// --------------------------------------------------------------------------------------------------------------------
namespace ImageProcessor.Web.Caching
{
#region Using
using System;
#endregion
///
/// Describes a cached image for cleanup
///
public sealed class CleanupImage
{
///
/// Gets or sets the value of the cached image.
///
public string Path { get; set; }
///
/// Gets or sets when the cached image should expire from the cache.
///
public DateTime ExpiresUtc { get; set; }
}
}