10 lines
218 B
C#
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);
|
|
}
|
|
}
|