You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
487 B
C#
24 lines
487 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Aucma.Core.PrintTo.Common
|
|
{
|
|
public enum PrintState
|
|
{
|
|
[Description("空闲中")]
|
|
Idle,
|
|
[Description("打印中")]
|
|
Printing,
|
|
[Description("已暂停")]
|
|
Paused,
|
|
[Description("已停止")]
|
|
Stopped,
|
|
[Description("已完成")]
|
|
Completetd
|
|
}
|
|
}
|