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