ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationDataModels/Enums/OrderStatus.cs

18 lines
355 B
C#
Raw Normal View History

2024-04-07 17:40:43 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoftwareInstallationDataModels.Enums
2024-04-07 16:54:02 +04:00
{
public enum OrderStatus
{
Неизвестен = -1,
Принят = 0,
Выполняется = 1,
Готов = 2,
2024-04-07 17:40:43 +04:00
Выдан = 3
2024-04-07 16:54:02 +04:00
}
2024-04-07 17:40:43 +04:00
}