17 lines
354 B
C#
Raw Normal View History

2024-02-08 00:52:37 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-02-08 20:30:24 +04:00
namespace PrecastConcretePlantDataModels.Enums
2024-02-08 00:52:37 +04:00
{
2024-02-08 20:30:24 +04:00
public enum OrderStatus
2024-02-08 00:52:37 +04:00
{
2024-02-08 20:30:24 +04:00
Неизвестен = -1,
Принят = 0,
Выполняется = 1,
Готов = 2,
Выдан = 3
2024-02-08 00:52:37 +04:00
}
2024-02-08 20:30:24 +04:00
}