PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantDataModels/Enums/OrderStatus.cs

20 lines
386 B
C#
Raw Permalink Normal View History

2023-02-19 11:27:59 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantDataModels.Enums
{
public enum OrderStatus
{
Неизвестен = -1,
Принят = 0,
Выполняется = 1,
Готов = 2,
2023-06-15 08:06:21 +04:00
Выдан = 3,
Ожидание = 4
2023-02-19 11:27:59 +04:00
}
}