1
0
mirror of https://github.com/chylex/Discord-History-Tracker.git synced 2025-07-22 04:04:33 +02:00
Discord-History-Tracker/app/Desktop/Dialogs/Progress/IProgressCallback.cs
2022-02-21 22:27:29 +01:00

8 lines
174 B
C#

using System.Threading.Tasks;
namespace DHT.Desktop.Dialogs.Progress {
interface IProgressCallback {
Task Update(string message, int finishedItems, int totalItems);
}
}