PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaDataModels/Enums/OrderStatus.cs

18 lines
343 B
C#
Raw Normal View History

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