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

19 lines
356 B
C#
Raw 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,
Выдан = 3
}
}