namespace FlowerShopDataModels.Enums
{
public enum OrderStatus
Unknown = -1,
Accepted = 0,
Processing = 1,
Ready = 2,
Delivered = 3
}