mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-12-04 21:42:47 +01:00
10 lines
226 B
C#
10 lines
226 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace DHT.Desktop.Dialogs.Progress;
|
|
|
|
interface IProgressCallback {
|
|
Task Update(string message, int finishedItems, int totalItems);
|
|
Task UpdateIndeterminate(string message);
|
|
Task Hide();
|
|
}
|