Files
Disco/Disco.ClientBootstrapper/IStatus.cs
2013-02-28 17:15:46 +11:00

13 lines
308 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Disco.ClientBootstrapper
{
interface IStatus
{
void UpdateStatus(string Heading, string SubHeading, string Message, Nullable<bool> ShowProgress = null, Nullable<int> Progress = null);
}
}