using System; using System.Collections.Generic; using System.Text; namespace Dfs.WayneChina.CardTrxManager.Support { /// /// Transaction payment result /// public enum PaymentStatus { /// /// Paid /// Paid, /// /// Unpaid /// Unpaid, /// /// Unsent /// Unsent } }