// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) James South.
// Licensed under the Apache License, Version 2.0.
//
//
// The post processing event arguments.
//
// --------------------------------------------------------------------------------------------------------------------
namespace ImageProcessor.Web.Helpers
{
using System;
///
/// The post processing event arguments.
///
public class PostProcessingEventArgs : EventArgs
{
///
/// Gets or sets the cached image path.
///
public string CachedImagePath { get; set; }
}
}