mirror of https://github.com/SixLabors/ImageSharp
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.
23 lines
693 B
23 lines
693 B
// <copyright file="ProgressEventArgs.cs" company="James Jackson-South">
|
|
// Copyright (c) James Jackson-South and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
// </copyright>
|
|
|
|
namespace GenericImage
|
|
{
|
|
/// <summary>
|
|
/// Contains event data related to the progress made processing an image.
|
|
/// </summary>
|
|
public class ProgressEventArgs : System.EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the number of rows processed.
|
|
/// </summary>
|
|
public int RowsProcessed { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the total number of rows.
|
|
/// </summary>
|
|
public int TotalRows { get; set; }
|
|
}
|
|
}
|