CourseWork_CompShop/ComputerShopProvider/ComputerShopDataModels/Enums/PurchaseStatus.cs

18 lines
350 B
C#
Raw Normal View History

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