namespace Extrudex.Domain.Enums;
///
/// Represents the current operational status of a printer.
///
public enum PrinterStatus
{
///
/// Printer is online and idle, ready to accept jobs.
///
Idle = 0,
///
/// Printer is currently printing.
///
Printing = 1,
///
/// Printer is offline or unreachable.
///
Offline = 2,
///
/// Printer is in an error state.
///
Error = 3,
///
/// Printer is paused.
///
Paused = 4
}