PIbd-21_Kouvshinoff_T._A._A.../AutomobilePlant/AutomobilePlantDataModels/Enums/OrderStatus.cs

13 lines
263 B
C#
Raw Normal View History

2024-04-20 21:35:14 +04:00
namespace AutomobilePlantDataModels.Enums
2024-02-11 16:43:19 +04:00
{
public enum OrderStatus
{
Неизвестен = -1,
Принят = 0,
Выполняется = 1,
Готов = 2,
2024-04-20 21:35:14 +04:00
Выдан = 3,
Ожидание = 4
2024-02-11 16:43:19 +04:00
}
}