using Dfs.WayneChina.HengshanPayTerminal.Support;
using Edge.Core.Parser.BinaryParser.Attributes;
namespace Dfs.WayneChina.HengshanPayTerminal.MessageEntity.Outgoing
{
///
/// Request to change the authorization/work mode on pump from system.
/// 授权模式切换。
///
public class ChangeAuthMode : CardMessageBase
{
#region Constructor
///
/// Constructor
///
public ChangeAuthMode() : base(Command.ChangeAuthMode)
{
}
#endregion
#region Properties
///
/// Fueling point.
/// 加油点。
///
[Format(2, EncodingType.HexString, -90)]
public string FPCode { get; set; }
///
/// Work mode to be set.
/// 期望设置的工作模式。
///
[Format(1, EncodingType.BIN, -89)]
public WorkMode WorkMode { get; set; }
#endregion
}
}