2024-05-24 12:23:50 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace FurnitureAssemblyDataModels.Enums
|
|
|
|
|
{
|
|
|
|
|
// Статус заказа
|
2024-05-24 13:05:47 +04:00
|
|
|
|
public enum AdStatus
|
2024-05-24 12:23:50 +04:00
|
|
|
|
{
|
|
|
|
|
Неизвестен = -1,
|
|
|
|
|
|
|
|
|
|
Принят = 0,
|
|
|
|
|
|
|
|
|
|
Выполняется = 1,
|
|
|
|
|
|
|
|
|
|
Готов = 2,
|
|
|
|
|
|
|
|
|
|
Выдан = 3
|
|
|
|
|
}
|
|
|
|
|
}
|