Files
PIbd-22_DozorovaAA_Furnitur…/AbstractFurnitureAssemblyDataModels/Enums/OrderStatus.cs
2023-05-13 23:58:41 +04:00

19 lines
390 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbstractFurnitureAssemblyDataModels.Enums
{
public enum OrderStatus
{
Неизвестен = -1,
Принят = 0,
Выполняется = 1,
Готов = 2,
Выдан = 3,
Ожидание = 4
}
}