8 lines
203 B
C#
8 lines
203 B
C#
namespace Disco.ClientBootstrapper
|
|
{
|
|
interface IStatus
|
|
{
|
|
void UpdateStatus(string Heading, string SubHeading, string Message, bool? ShowProgress = null, int? Progress = null);
|
|
}
|
|
}
|