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