mirror of https://github.com/SixLabors/ImageSharp
6 changed files with 72 additions and 24 deletions
@ -0,0 +1,25 @@ |
|||
// --------------------------------------------------------------------------------------------------------------------
|
|||
// <copyright file="PostProcessingEventArgs.cs" company="James South">
|
|||
// Copyright (c) James South.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
// </copyright>
|
|||
// <summary>
|
|||
// The post processing event arguments.
|
|||
// </summary>
|
|||
// --------------------------------------------------------------------------------------------------------------------
|
|||
|
|||
namespace ImageProcessor.Web.Helpers |
|||
{ |
|||
using System; |
|||
|
|||
/// <summary>
|
|||
/// The post processing event arguments.
|
|||
/// </summary>
|
|||
public class PostProcessingEventArgs : EventArgs |
|||
{ |
|||
/// <summary>
|
|||
/// Gets or sets the cached image path.
|
|||
/// </summary>
|
|||
public string CachedImagePath { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue