PIbd_23_Valova_A._D._SushiBar/SushiBar/SushiBarDataModels/Enums/OrderStatus.cs

19 lines
356 B
C#
Raw Normal View History

2024-02-12 15:00:02 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarDataModels.Enums
{
public enum OrderStatus
{
Неизвестен = -1,
Принят = 0,
Выполняется = 1,
Готов = 2,
2024-05-22 14:58:16 +04:00
Ожидает = 3,
Выдан = 4
}
2024-02-12 15:00:02 +04:00
}