#region License
// Copyright 2005-2019 Paul Kohler (https://github.com/paulkohler/minisqlquery). All rights reserved.
// This source code is made available under the terms of the GNU Lesser General Public License v3.0
// https://github.com/paulkohler/minisqlquery/blob/master/LICENSE
#endregion
using System;
namespace MiniSqlQuery.Core
{
///
/// The batch progress event args.
///
public class BatchProgressEventArgs : EventArgs
{
///
/// Initializes a new instance of the class.
///
/// The query.
/// The count.
/// The index.
public BatchProgressEventArgs(Query query, int count, int index)
{
Query = query;
Count = count;
Index = index;
}
///
/// Gets Count.
///
/// The count.
public int Count { get; private set; }
///
/// Gets Index.
///
/// The index.
public int Index { get; private set; }
///
/// Gets Query.
///
/// The query.
public Query Query { get; private set; }
}
}