18 lines
342 B
C#
Raw Normal View History

2024-05-10 23:48:48 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LawFirmDataModels.Enums
2024-04-13 01:58:54 +04:00
{
public enum OrderStatus
{
Неизвестен = -1,
Принят = 0,
Выполняется = 1,
Готов = 2,
2024-05-10 23:48:48 +04:00
Выдан = 3
2024-04-13 01:58:54 +04:00
}
2024-05-10 23:48:48 +04:00
}