14 lines
215 B
C
14 lines
215 B
C
|
// #pragma once
|
||
|
|
||
|
/// <summary>
|
||
|
/// Payment method (byte represents payment option id)
|
||
|
/// </summary>
|
||
|
enum PaymentMethod
|
||
|
{
|
||
|
Undefined = 0xFF,
|
||
|
Progressive = 0x01,
|
||
|
Degressive = 0x02,
|
||
|
Linear = 0x03,
|
||
|
Steps = 0x04
|
||
|
};
|