namespace API.SignalR;
///
/// How progress should be represented on the UI
///
public static class ProgressType
{
///
/// Progress scales from 0F -> 1F
///
public const string Determinate = "determinate";
///
/// Progress has no understanding of quantity
///
public const string Indeterminate = "indeterminate";
///
/// No progress component to the event
///
public const string None = "";
}