using System;
using System.Collections.Generic;
using System.Text;

namespace Dfs.WayneChina.PosModelMini
{
    public enum PosTrxSource
    {
        /// <summary>
        /// The transaction is from indoor.
        /// </summary>
        Indoor,

        /// <summary>
        /// The transaction is from outdoor.
        /// </summary>
        Outdoor
    }
}