namespace LANCommander.Steam.Enums;
///
/// Status of an installation job
///
public enum SteamCmdInstallStatus
{
///
/// Job is queued and waiting to start
///
Queued,
///
/// Job is currently being processed
///
InProgress,
///
/// Job completed successfully
///
Completed,
///
/// Job failed
///
Failed,
///
/// Job was cancelled
///
Cancelled
}