9 lines
180 B
C#
9 lines
180 B
C#
namespace LibationWinForm
|
|
{
|
|
public interface IIndexLibraryDialog : IRunnableDialog
|
|
{
|
|
int TotalBooksProcessed { get; }
|
|
int NewBooksAdded { get; }
|
|
}
|
|
}
|