using System;
using System.Collections.Generic;
using System.Text;
namespace Dfs.WayneChina.PosModelMini
{
public enum PosTrxType
{
///
/// Sale transaction.
///
Sale,
///
/// Refund transaction.
///
Refund,
///
/// Reconciliation transaction.
///
Reconciliation,
///
/// Redemption transaction.
///
Redemption,
///
/// Log off
///
LogOff,
///
/// Log on.
///
LogOn,
///
/// End of shift.
///
EndOfShift,
///
/// End of day.
///
EndOfDay
}
}