Files
Disco/Disco.ClientBootstrapper/IStatus.cs
T
2025-07-20 12:00:57 +10:00

8 lines
203 B
C#

namespace Disco.ClientBootstrapper
{
interface IStatus
{
void UpdateStatus(string Heading, string SubHeading, string Message, bool? ShowProgress = null, int? Progress = null);
}
}