initial commit
This commit is contained in:
22
backend/Domain/Enums/JobStatus.cs
Normal file
22
backend/Domain/Enums/JobStatus.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
namespace Extrudex.Domain.Enums;
|
||||
|
||||
/// <summary>
|
||||
/// Represents the current lifecycle status of a print job.
|
||||
/// </summary>
|
||||
public enum JobStatus
|
||||
{
|
||||
/// <summary>Job has been created but not yet sent to the printer.</summary>
|
||||
Queued = 0,
|
||||
|
||||
/// <summary>Printer is actively printing this job.</summary>
|
||||
Printing = 1,
|
||||
|
||||
/// <summary>Job completed successfully.</summary>
|
||||
Completed = 2,
|
||||
|
||||
/// <summary>Job was cancelled by the user.</summary>
|
||||
Cancelled = 3,
|
||||
|
||||
/// <summary>Job failed due to an error.</summary>
|
||||
Failed = 4
|
||||
}
|
||||
Reference in New Issue
Block a user