19 lines
371 B
C#
Raw Normal View History

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