1
0
mirror of https://github.com/chylex/Discord-History-Tracker.git synced 2025-07-04 10:38:52 +02:00
Discord-History-Tracker/app/Desktop/Dialogs/Progress/IProgressCallback.cs
2025-03-17 17:27:12 +01:00

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();
}