mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-04-01 13:53:02 -04:00
9 lines
180 B
C#
9 lines
180 B
C#
namespace LibationWinForm
|
|
{
|
|
public interface IIndexLibraryDialog : IRunnableDialog
|
|
{
|
|
int TotalBooksProcessed { get; }
|
|
int NewBooksAdded { get; }
|
|
}
|
|
}
|