mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-07-22 04:04:33 +02:00
9 lines
183 B
C#
9 lines
183 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace DHT.Desktop.Dialogs.Progress;
|
|
|
|
interface IProgressCallback {
|
|
Task Update(string message, int finishedItems, int totalItems);
|
|
Task Hide();
|
|
}
|