1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-24 10:14:55 +02:00
bitwarden-mobile/src/Core/Enums/TransactionType.cs
2019-04-09 23:24:03 -04:00

12 lines
202 B
C#

namespace Bit.Core.Enums
{
public enum TransactionType : byte
{
Charge = 0,
Credit = 1,
PromotionalCredit = 2,
ReferralCredit = 3,
Refund = 4,
}
}