Pibd-22_Presnyakova.V.V_Jew.../JewelryStoreDataModels/Enums/OrderStatus.cs

18 lines
347 B
C#
Raw Normal View History

2023-02-05 18:55:08 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JewelryStoreDataModels.Enums
2023-02-05 18:01:09 +04:00
{
public enum OrderStatus
{
Неизвестен = -1,
Принят = 0,
Выполняется = 1,
Готов = 2,
Выдан = 3
}
2023-02-05 18:55:08 +04:00
}