mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 15:36:59 +01:00
16 lines
281 B
Swift
16 lines
281 B
Swift
|
//
|
||
|
// BitcoinUnit.swift
|
||
|
// BlueWallet
|
||
|
//
|
||
|
// Created by Marcos Rodriguez on 4/14/24.
|
||
|
// Copyright © 2024 BlueWallet. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
enum BitcoinUnit: String {
|
||
|
case BTC = "BTC"
|
||
|
case SATS = "SATS"
|
||
|
case LOCAL_CURRENCY = "LOCAL_CURRENCY"
|
||
|
}
|