18 lines
308 B
C#
18 lines
308 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ComputerStoreDataModels.Enums
|
|
{
|
|
public enum OrderStatus
|
|
{
|
|
Unknown = -1,
|
|
Accepted = 0,
|
|
InProcess = 1,
|
|
Ready = 2,
|
|
Given = 3
|
|
}
|
|
}
|