Files
Disco/Disco.ClientBootstrapper/IStatus.cs
T
2025-07-20 11:24:04 +10:00

10 lines
218 B
C#

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