using System; namespace ECOEarth.Web.Domain { [Serializable] public enum OrderStatus { Created = 0, PaymentApproved = 1, PaymentRejected = 2 } }