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