using System;
using System.Collections.Generic;
using System.Text;
namespace Dfs.WayneChina.CardTrxManager.Support
{
///
/// Indicates the state of a transaction
///
public enum TransactionState
{
///
/// Transaction is open
///
Open,
///
/// Transaction is newly created
///
Created,
///
/// Transaction is finished
///
Finished,
///
/// Transaction runs into error
///
Error
}
}