//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace GenericImage
{
///
/// Contains event data related to the progress made processing an image.
///
public class ProgressEventArgs : System.EventArgs
{
///
/// Gets or sets the number of rows processed.
///
public int RowsProcessed { get; set; }
///
/// Gets or sets the total number of rows.
///
public int TotalRows { get; set; }
}
}