📷 A modern, cross-platform, 2D Graphics library for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
837 B

// --------------------------------------------------------------------------------------------------------------------
// <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; }
}
}