mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +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"
|
|
}
|